diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d1536c6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM node:21.6 + +COPY . . + +RUN npm i +RUN npm run build + +CMD ["npm", "run", "start"]