From a310f7a9aa992fcc64fea927f06fd844343f9e5c Mon Sep 17 00:00:00 2001 From: ngn Date: Mon, 26 Aug 2024 00:25:10 +0300 Subject: [PATCH] update: add missing dirs to the Dockerfile --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6385ed7..0b19bc9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,11 @@ WORKDIR /app COPY *.go ./ COPY *.mod ./ COPY *.sum ./ -COPY lib ./lib -COPY routes ./routes -COPY public ./public + +COPY log ./log +COPY lib ./lib +COPY routes ./routes +COPY public ./public COPY templates ./templates RUN go build .