From 8e790d08e2146a0a39ac0f912833d6c095355449 Mon Sep 17 00:00:00 2001 From: Leex Date: Sun, 23 Feb 2025 22:21:55 +0100 Subject: [PATCH] Update Dockerfile - Test Bugfix Dockerpipeline the npm install -g corepack@latest is supposed to make problems with the main docker build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 99e6f1b5..9a4dca95 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /app # Install dependencies (this step is cached as long as the dependencies don't change) COPY package.json pnpm-lock.yaml ./ -RUN npm install -g corepack@latest +#RUN npm install -g corepack@latest RUN corepack enable pnpm && pnpm install