s
Some checks failed
Docker Build / publish (push) Failing after 7s

This commit is contained in:
Lea 2025-03-01 13:57:49 +01:00
parent 48938ba93a
commit 78e489c85b
Signed by: Lea
GPG key ID: 1BAFFE8347019C42

View file

@ -8,7 +8,7 @@ WORKDIR /app
# Install dependencies
COPY package.json pnpm-lock.yaml ./
RUN yarn global add pnpm && pnpm i --frozen-lockfile
RUN npm i -g pnpm && pnpm i --frozen-lockfile
# Rebuild the source code only when needed
FROM base AS builder