diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..09a75a2 --- /dev/null +++ b/dockerfile @@ -0,0 +1,5 @@ +FROM node:26-slim +WORKDIR /app +COPY . . +RUN npm install +CMD ["npm", "start"]