Dockerfile: copy server/*.json (gallery-data, focal-points, etc) into runtime container

This commit is contained in:
Sebastjan 2026-06-07 21:44:49 +02:00
parent bbf0420e7d
commit 0dd5092e1b

View File

@ -18,5 +18,6 @@ COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/dist ./dist COPY --from=builder /app/dist ./dist
COPY --from=builder /app/client/public ./client/public COPY --from=builder /app/client/public ./client/public
COPY --from=builder /app/attached_assets ./attached_assets COPY --from=builder /app/attached_assets ./attached_assets
COPY --from=builder /app/server ./server
EXPOSE 5000 EXPOSE 5000
CMD ["node", "dist/index.cjs"] CMD ["node", "dist/index.cjs"]