1 Commits

Author SHA1 Message Date
397597ae7d fix(ci):deployments need pnpm in base image
Some checks failed
Build and Push API / build-api (push) Failing after 8m44s
Build and Push Dashboard / build-dashboard (push) Failing after 8m16s
Build and Push Worker / build-worker (push) Failing after 7m50s
2026-03-31 16:47:17 +02:00
3 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ FROM node:${NODE_VERSION}-slim AS base
# FIX: Bad workaround (https://github.com/nodejs/corepack/issues/612)
ENV COREPACK_INTEGRITY_KEYS=0
RUN corepack enable && apt-get update && \
RUN corepack enable && npm install -g pnpm@10.6.2 && corepack disable && apt-get update && \
apt-get install -y --no-install-recommends \
ca-certificates \
openssl \

View File

@@ -5,7 +5,7 @@ FROM node:${NODE_VERSION}-slim AS base
# FIX: Bad workaround (https://github.com/nodejs/corepack/issues/612)
ENV COREPACK_INTEGRITY_KEYS=0
RUN corepack enable && apt-get update && \
RUN corepack enable && npm install -g pnpm@10.6.2 && corepack disable && apt-get update && \
apt-get install -y --no-install-recommends \
ca-certificates \
openssl \

View File

@@ -10,7 +10,7 @@ ENV DATABASE_URL=$DATABASE_URL
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable && \
RUN corepack enable && npm install -g pnpm@10.6.2 && corepack disable && \
apt-get update && \
apt-get install -y --no-install-recommends \
ca-certificates \