fix: Docker fixes
All checks were successful
Build and push Docker image / build (push) Successful in 2m53s
Release new version / release (push) Successful in 29s
Update changelog / changelog (push) Successful in 24s

This commit is contained in:
2026-01-20 22:29:28 +01:00
parent 429613c67e
commit e0d8849bd1
2 changed files with 3 additions and 2 deletions

View File

@@ -1,3 +1,4 @@
.env
*/.env
*.md
build
node_modules

View File

@@ -4,7 +4,7 @@ FROM node:24-trixie-slim AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production && npm cache clean --force
RUN npm ci && npm cache clean --force
COPY . .
FROM node:24-trixie-slim AS production