From be4958708d715aeb33f275c061b61f48c65b7bab Mon Sep 17 00:00:00 2001 From: zhanshi Date: Sat, 8 Feb 2025 12:55:20 +0100 Subject: [PATCH] added files to COPY --- dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dockerfile b/dockerfile index 92d1939..f3148ed 100644 --- a/dockerfile +++ b/dockerfile @@ -17,6 +17,10 @@ WORKDIR /app # copy the built binary from the builder stage COPY --from=builder /app/codex-server . +COPY --from=builder /app/static /app/static +COPY --from=builder /app/templates /app/templates +COPY --from=builder /app/blog-posts /app/blog-posts +COPY --from=builder /app/documentation /app/documentation # set a non-root user for security RUN addgroup -S appgroup && adduser -S appuser -G appgroup