rollback node to v20 lts

This commit is contained in:
Suchin Sapphasitthatha 2025-08-05 05:50:25 +00:00
parent b8ce008d9e
commit 83bf892997

View file

@ -1,5 +1,5 @@
# Build Stage
FROM node:22.17.1-alpine AS build-stage
FROM node:20.19.4-alpine AS build-stage
# Create app directory
WORKDIR /app
@ -14,9 +14,9 @@ COPY . .
RUN npm run build
# Production Stage
FROM node:22.17.1-alpine
FROM node:20.19.4-alpine
ENV NODE_ENV production
ENV NODE_ENV=production
USER node
# Create app directory