Harrison Deng 6661c93469
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Added dockerfile for building.
2024-10-21 04:07:46 +00:00

10 lines
97 B
Docker

FROM node:20
COPY build/* ./app
EXPOSE 8888
RUN npm install
RUN npm build
CMD ["node", "app"]