feat(docker): add perl installation to Dockerfile for production environment

- Updated Dockerfile to include installation of perl in the production image.
- Ensured that the environment is prepared for any necessary scripts or dependencies requiring perl.

Signed-off-by: Innei <tukon479@gmail.com>
This commit is contained in:
Innei
2025-11-09 22:47:42 +08:00
parent e4d61ebd28
commit 442e1bcbf8

View File

@@ -31,6 +31,7 @@ FROM node:${NODE_VERSION}-slim AS runner
ENV NODE_ENV=production
WORKDIR /app
RUN apk install --no-cache perl
COPY --from=builder /workspace/be/apps/core/dist ./dist
COPY --from=builder /workspace/be/apps/core/drizzle ./drizzle