update: add missing dirs to the Dockerfile

This commit is contained in:
ngn 2024-08-26 00:24:09 +03:00
parent 5dd67e46f9
commit 6e41dee5dd

View File

@ -5,8 +5,11 @@ WORKDIR /app
COPY *.go ./
COPY *.mod ./
COPY *.sum ./
COPY lib ./lib
COPY log ./log
COPY public ./public
COPY routes ./routes
COPY templates ./templates
RUN go build .