chaged the docker file

This commit is contained in:
philipcheung 2025-03-16 21:56:05 +08:00
parent cb3dfa6f85
commit 271425f183
1 changed files with 3 additions and 3 deletions

View File

@ -5,10 +5,10 @@ WORKDIR /app
COPY package.json .
RUN npm install
RUN npm install -g serve
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "dev"]
CMD ["serve", "-s", "dist", "-l", "3000"]