fix: base for prod in Dockerfile
All checks were successful
Spell Check / Spell Check with Typos (push) Successful in 5s

This commit is contained in:
HAM 2026-01-12 14:21:17 +07:00
parent e29ad6a64d
commit ad544bc544

View file

@ -20,7 +20,7 @@ RUN pnpm run build
FROM base AS deps
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile
FROM node:23-slim AS prod
FROM base AS prod
ENV NODE_ENV="production"
WORKDIR /app