test node version 2

This commit is contained in:
Suchin Sapphasitthatha 2025-08-05 05:35:23 +00:00
parent 26ca23213c
commit b8ce008d9e

View file

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