diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4f078a9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +FROM node:24-slim + +WORKDIR /app + +COPY package*.json ./ + +RUN npm install + +COPY . . + +ENV PORT=3000 + +EXPOSE 3000 + +CMD ["npm", "start"]