Added dockerfile for building.
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Harrison Deng 2024-10-21 04:07:46 +00:00
parent 3bfd6b6559
commit 6661c93469

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM node:20
COPY build/* ./app
EXPOSE 8888
RUN npm install
RUN npm build
CMD ["node", "app"]