From 2777ac77c53892dd88beb361f8854bec215882d1 Mon Sep 17 00:00:00 2001 From: ngn Date: Mon, 26 Aug 2024 02:49:00 +0300 Subject: [PATCH] fix: Dockerfile directory name --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4e16336..020d4eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]