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