From 013939a1fed0fccd1dffa0a95468713c74c9aa4e Mon Sep 17 00:00:00 2001 From: supalerk-ar66 Date: Thu, 5 Feb 2026 15:35:52 +0700 Subject: [PATCH] feat: Add Dockerfile for Frontend-Learner application containerization. --- Frontend-Learner/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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