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

@ -2,11 +2,14 @@ FROM golang:1.22.5
WORKDIR /app WORKDIR /app
COPY *.go ./ COPY *.go ./
COPY *.mod ./ COPY *.mod ./
COPY *.sum ./ COPY *.sum ./
COPY lib ./lib
COPY public ./public COPY lib ./lib
COPY log ./log
COPY public ./public
COPY routes ./routes
COPY templates ./templates COPY templates ./templates
RUN go build . RUN go build .