diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..623c354 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM node:22 + +RUN mkdir /app +COPY . /app +WORKDIR /app + +RUN npm ci +RUN npm run build + +CMD ["npm", "run", "start"] \ No newline at end of file