Harrison Deng a30b115df0
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Fixed Dockerfile
2024-10-21 04:28:51 +00:00

10 lines
107 B
Docker

FROM node:20
WORKDIR ./app
COPY ./ ./
RUN npm install
RUN npm run build
EXPOSE 3000
CMD ["npm", "start"]