Files
overleaf-registration-be/Dockerfile
corrado.mulas a2e4ad87db First commit
2024-11-19 22:32:50 +01:00

11 lines
102 B
Docker

FROM golang:1.20-alpine
WORKDIR /app
COPY . .
RUN go mod tidy
RUN go build -o app .
CMD ["./app"]