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