Dockerfile (view raw)
1 2 3 4 5 6 7 8
FROM golang:latest WORKDIR /usr/src/app RUN go install github.com/cosmtrek/air@latest COPY . . RUN go mod tidy