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

5
.dockerignore Normal file
View File

@@ -0,0 +1,5 @@
node_modules
.nuxt
.output
dist
.git

View File

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