add missing dirs to the API dockerfile

This commit is contained in:
ngn 2024-07-24 01:22:00 +03:00
parent bd030d3756
commit 7a85e0fed2

View File

@ -7,10 +7,12 @@ COPY *.mod ./
COPY *.sum ./ COPY *.sum ./
COPY Makefile ./ COPY Makefile ./
COPY routes ./routes COPY routes ./routes
COPY global ./global
COPY database ./database
COPY util ./util COPY util ./util
EXPOSE 7001 EXPOSE 7001
RUN go build RUN make
ARG PASSWORD ARG PASSWORD
ENV PASSWORD $PASSWORD ENV PASSWORD $PASSWORD