Potion/Dockerfile
2026-02-07 23:41:31 -07:00

18 lines
253 B
Docker

FROM golang:1.25-alpine
WORKDIR /app
# Solution t IP block?
ENV GOPROXY=https://goproxy.io,https://athens.azurefd.net,direct
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN go build -o server ./cmd/web/main.go
EXPOSE 8080
CMD ["./server"]