From 709d18199c09fbb0945b6adbfb27196d985c778a Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 29 Sep 2025 16:39:13 +0700 Subject: [PATCH] Update frontend new build dev, proc 3 --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 8e4bb051..8fc157f1 100755 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -19,7 +19,7 @@ ENV TZ=Asia/Bangkok \ FROM base AS deps COPY package.json package-lock.json* ./ # ถ้ามี lock ใช้ npm ci; ถ้าไม่มีก็ npm i -RUN if [ -f package-lock.json ]; then npm ci --no-audit --no-fund; else npm i --no-audit --no-fund; fi +RUN if [ -f package-lock.json ]; then npm ci --no-audit --no-fund; else npm install --no-audit --no-fund; fi # เพิ่ม shadcn/ui + tailwind deps RUN npm install -D tailwindcss postcss autoprefixer shadcn@latest \