website/api/Dockerfile
2024-10-06 17:30:25 +03:00

18 lines
244 B
Docker

FROM golang:1.23.1
WORKDIR /app
COPY *.go ./
COPY *.mod ./
COPY *.sum ./
COPY Makefile ./
COPY routes ./routes
COPY global ./config
COPY database ./database
COPY util ./util
EXPOSE 7001
RUN make
ENTRYPOINT ["/app/server"]