fix(docker): add missing deps to dockerfile
All checks were successful
Build and Push Docker Image / build (push) Successful in 3m2s

This commit is contained in:
2026-02-13 13:20:20 +01:00
parent 15f6264bff
commit dbd7d73846
2 changed files with 6 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
RUN pnpm install --frozen-lockfile
FROM base AS build
RUN apk add --no-cache imagemagick gcompat
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .