diff --git a/Frontend-Learner/Dockerfile b/Frontend-Learner/Dockerfile index 7d75ae6c..1e21249f 100644 --- a/Frontend-Learner/Dockerfile +++ b/Frontend-Learner/Dockerfile @@ -1,5 +1,5 @@ # --- Build Stage --- -FROM node:20-bullseye-slim AS build-stage +FROM node:20 AS build-stage # กำหนดโฟลเดอร์ทำงานใน Container WORKDIR /app @@ -17,7 +17,7 @@ COPY . . RUN npm run build # --- Production Stage --- -FROM node:20-bullseye-slim AS production-stage +FROM node:20 AS production-stage # กำหนดโฟลเดอร์ทำงาน WORKDIR /app