ยกเลิกการ copy package-lock.json ตอน production

This commit is contained in:
Suchin Sapphasitthatha 2025-08-05 06:03:24 +00:00
parent 768be704cf
commit 9c242dd57a

View file

@ -25,7 +25,7 @@ WORKDIR /app
COPY --from=build-stage /app/dist ./dist
# Install only production dependencies
COPY package*.json ./
COPY package.json ./
RUN npm ci --production
USER node