diff --git a/Dockerfile b/Dockerfile index 177b743..9a7842a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,10 @@ FROM node:22-alpine WORKDIR /app +COPY package*.json . + +RUN npm install + COPY . . CMD ["node", "index.js"] \ No newline at end of file