website/api/Dockerfile

18 lines
244 B
Docker
Raw Normal View History

FROM golang:1.23.1
2023-11-12 17:43:23 +03:00
WORKDIR /app
2024-07-24 01:22:00 +03:00
COPY *.go ./
COPY *.mod ./
COPY *.sum ./
2023-11-12 17:43:23 +03:00
COPY Makefile ./
2024-07-24 01:22:00 +03:00
COPY routes ./routes
2024-10-06 17:30:25 +03:00
COPY global ./config
2024-07-24 01:22:00 +03:00
COPY database ./database
COPY util ./util
2023-11-12 17:43:23 +03:00
2024-07-24 01:19:49 +03:00
EXPOSE 7001
2024-07-24 01:22:00 +03:00
RUN make
2023-11-12 19:18:10 +03:00
2023-11-12 17:43:23 +03:00
ENTRYPOINT ["/app/server"]