leex279 commited on
Commit
8e790d0
·
unverified ·
1 Parent(s): f0ea22e

Update Dockerfile - Test Bugfix Dockerpipeline

Browse files

the npm install -g corepack@latest is supposed to make problems with the main docker build

Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -6,7 +6,7 @@ WORKDIR /app
6
  # Install dependencies (this step is cached as long as the dependencies don't change)
7
  COPY package.json pnpm-lock.yaml ./
8
 
9
- RUN npm install -g corepack@latest
10
 
11
  RUN corepack enable pnpm && pnpm install
12
 
 
6
  # Install dependencies (this step is cached as long as the dependencies don't change)
7
  COPY package.json pnpm-lock.yaml ./
8
 
9
+ #RUN npm install -g corepack@latest
10
 
11
  RUN corepack enable pnpm && pnpm install
12