update: add missing dirs to the Dockerfile

This commit is contained in:
ngn 2024-08-26 00:25:10 +03:00
parent 60bff6356c
commit a310f7a9aa

View File

@ -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 .