diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6ab4fc8 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM node:20 + +COPY ./dist /app/dist +COPY ./node_modules /app/node_modules +COPY ./public /app/public + +WORKDIR /app + +CMD sh -c "node /app/dist/main.js" \ No newline at end of file