diff --git a/Dockerfile b/Dockerfile index 0ca4098..3c19494 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,10 @@ FROM node:18-alpine WORKDIR /app -COPY package*.json . +COPY package.json . +COPY package-lock.json . + RUN npm ci COPY . . -CMD ["node", "index.js"] \ No newline at end of file +CMD ["node", "index.js"]