This commit is contained in:
philipcheung 2025-03-16 21:39:01 +08:00
parent bb6db64165
commit 64c4ee8f63
1 changed files with 5 additions and 5 deletions

View File

@ -3,15 +3,15 @@ FROM node:18-alpine
WORKDIR /app
COPY package.json .
RUN npm install
RUN npm install -g serve
RUN npm i -g serve
COPY . .
RUN npm run build
COPY --from=build /app/dist ./dist
RUN npm run build
EXPOSE 3000
# Serve the static files after building
CMD ["serve", "-s", "dist", "-l", "3000"]
CMD [ "serve", "-s", "dist" ]