Update Dockerfile
Some checks failed
Build and Deploy / Deploy (push) Failing after 1m19s

This commit is contained in:
Xeovalyte 2023-11-28 16:21:42 +01:00
parent 49eb33e83a
commit 9ccb8a24f7

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM node:18
WORKDIR /usr/src/app
COPY .webiste/output .
EXPOSE 3000
CMD [ "node", "server/index.mjs" ]