diff --git a/DockerFile b/DockerFile new file mode 100644 index 0000000..aced5f1 --- /dev/null +++ b/DockerFile @@ -0,0 +1,11 @@ +FROM node:21 + +COPY . /app + +WORKDIR /app + +RUN npm install && npm run build + +EXPOSE 3000 + +CMD ["npm", "start"] \ No newline at end of file