Update Dockerfile

This commit is contained in:
2025-06-22 23:10:02 +02:00
committed by GitHub
parent 53ade32d98
commit 326c9e2159

View File

@@ -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"]
CMD ["npm", "start"]