Added dockerfile
All checks were successful
Build and Deploy / Deploy (push) Successful in 1m49s

This commit is contained in:
xeovalyte 2025-02-10 18:16:16 +01:00
parent 7da39a8e5f
commit 821b521590
Signed by: xeovalyte
SSH Key Fingerprint: SHA256:GWI1hq+MNKR2UOcvk7n9tekASXT8vyazK7vDF9Xyciw

10
Dockerfile Normal file
View File

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