diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7520af3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM node:18 + +WORKDIR /usr/src/app + +COPY ./construction/.output . + +EXPOSE 3000 + +CMD [ "node", "server/index.mjs" ] +