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

This commit is contained in:
2025-02-10 18:16:16 +01:00
parent 7da39a8e5f
commit 821b521590

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" ]