2 Commits
0.0.1 ... 0.0.2

Author SHA1 Message Date
7dfba5e240 Fix stupid syntax error 2026-02-05 22:29:28 +00:00
74572b3ede Ensure 'static' directory is built into final container 2026-02-05 22:28:05 +00:00

View File

@@ -16,6 +16,7 @@ WORKDIR /app
COPY --from=builder /app/build ./build COPY --from=builder /app/build ./build
COPY --from=builder /app/node_modules ./node_modules COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package.json ./package.json COPY --from=builder /app/package.json ./package.json
COPY --from=builder /app/static ./static
USER node USER node