security/Dockerfile
2024-03-21 23:24:36 +03:00

16 lines
231 B
Docker

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