From bb6db6416567440a8f843c9553b88a74c9959a23 Mon Sep 17 00:00:00 2001 From: philipcheung Date: Sun, 16 Mar 2025 21:36:17 +0800 Subject: [PATCH] again --- Dockerfile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index ab12d62..cf1c65a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,17 @@ -# Production stage -FROM node:18-alpine as production +FROM node:18-alpine WORKDIR /app -# Install serve globally +COPY package.json . +RUN npm install RUN npm install -g serve -# Copy built files from build stage +COPY . . +RUN npm run build + COPY --from=build /app/dist ./dist EXPOSE 3000 -# Use the -s flag to handle SPA routing -CMD ["serve", "-s", "dist", "-l", "3000"] +# Serve the static files after building +CMD ["serve", "-s", "dist", "-l", "3000"] \ No newline at end of file