fix: remove redundant build step in Dockerfile

This commit is contained in:
Danel Kungla
2025-07-24 09:43:04 +03:00
parent 65f0114ae4
commit f0e956a7e8

View File

@@ -28,12 +28,9 @@ RUN set -a \
&& . .env \
&& . .env.production \
&& set +a \
&& node check-env.js \
&& pnpm build
RUN node check-env.js
RUN pnpm build
# --- Stage 2: Runtime ---
FROM node:20-alpine