From 6d4c761cd4d987b874745e1eade0cf2bd995451c Mon Sep 17 00:00:00 2001 From: DefectingCat Date: Tue, 26 Dec 2023 11:30:29 +0800 Subject: [PATCH] update docker build command --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index acd054a..e9afbaa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,3 @@ -# FROM node:18-alpine AS base FROM node:lts-alpine AS base # Install dependencies only when needed @@ -29,7 +28,7 @@ COPY . . # Uncomment the following line in case you want to disable telemetry during the build. # ENV NEXT_TELEMETRY_DISABLED 1 -RUN yarn build +RUN yarn build-local # If using npm comment out above and use below instead # RUN npm run build