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 *.go ./
COPY *.mod ./ COPY *.mod ./
COPY *.sum ./ COPY *.sum ./
COPY lib ./lib
COPY routes ./routes COPY log ./log
COPY public ./public COPY lib ./lib
COPY routes ./routes
COPY public ./public
COPY templates ./templates COPY templates ./templates
RUN go build . RUN go build .