Update Dockerfile - Test Bugfix Dockerpipeline

the npm install -g corepack@latest is supposed to make problems with the main docker build
This commit is contained in:
Leex 2025-02-23 22:21:55 +01:00 committed by GitHub
parent f0ea22ec63
commit 8e790d08e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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