From 9593fc736fae2b532a42f3f2fc0d1b12a0becb09 Mon Sep 17 00:00:00 2001 From: philipcheung Date: Sun, 16 Mar 2025 18:32:29 +0800 Subject: [PATCH] try to change back run build --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ed0d977..387529c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,11 +3,13 @@ FROM node:18-alpine WORKDIR /app COPY package.json . - RUN npm install +RUN npm install -g serve COPY . . +RUN npm run build EXPOSE 3000 -CMD ["npm", "run", "build"] +# Serve the static files after building +CMD ["serve", "-s", "dist", "-l", "3000"] \ No newline at end of file