mirror of
https://github.com/ssep1ol/overleaf-registration-be.git
synced 2026-07-21 20:40:21 +00:00
12 lines
123 B
Docker
12 lines
123 B
Docker
FROM golang:1.20-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN go mod init main
|
|
RUN go mod tidy
|
|
RUN go build -o app .
|
|
|
|
CMD ["./app"]
|