diff --git a/Dockerfile b/Dockerfile index bac877d..fb6ddfa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app # Copy package files COPY package*.json ./ -RUN npm ci --only=production +RUN npm install --only=production # Copy app files COPY . . @@ -14,4 +14,4 @@ RUN npm run build EXPOSE 3000 -CMD ["npm", "start"] \ No newline at end of file +CMD ["npm", "start"]