website/Dockerfile
2023-12-09 19:25:38 +03:00

15 lines
190 B
Docker

FROM golang:1.21.4
WORKDIR /app
COPY *.go ./
COPY *.mod ./
COPY *.sum ./
COPY routes ./routes
COPY public ./public
COPY templates ./templates
RUN go build .
ENTRYPOINT ["/app/website"]