Update Dockerfile - Test Bugfix Dockerpipeline
Browse filesthe npm install -g corepack@latest is supposed to make problems with the main docker build
- 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 |
|