fix: Dockerfile directory name

This commit is contained in:
ngn 2024-08-26 02:49:00 +03:00
parent 25e6fcaa23
commit 2777ac77c5

View File

@ -6,12 +6,12 @@ COPY *.go ./
COPY *.mod ./
COPY *.sum ./
COPY lib ./log
COPY lib ./lib
COPY log ./log
COPY public ./public
COPY routes ./routes
COPY templates ./templates
RUN go build .
RUN go build
ENTRYPOINT ["/app/security"]