From 6e41dee5dd9987713b81f5137934eb98a133125f Mon Sep 17 00:00:00 2001 From: ngn Date: Mon, 26 Aug 2024 00:24:09 +0300 Subject: [PATCH] update: add missing dirs to the Dockerfile --- Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a5206f0..a5ac7e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,14 @@ FROM golang:1.22.5 WORKDIR /app -COPY *.go ./ +COPY *.go ./ COPY *.mod ./ COPY *.sum ./ -COPY lib ./lib -COPY public ./public + +COPY lib ./lib +COPY log ./log +COPY public ./public +COPY routes ./routes COPY templates ./templates RUN go build .