File tree Expand file tree Collapse file tree 4 files changed +8
-0
lines changed Expand file tree Collapse file tree 4 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ WORKDIR /data
10
10
# Copy in files needed for compilation, located in the repo root
11
11
COPY package.json pnpm-lock.yaml ./
12
12
13
+ # Install latest corepack version to work around a bug with signatures
14
+ RUN npm install -g corepack@latest
13
15
RUN corepack enable
14
16
RUN pnpm install
15
17
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ COPY tsconfig.json pnpm-lock.yaml package.json postcss.config.cjs svelte.config.
7
7
COPY src /app/src
8
8
COPY static /app/static
9
9
10
+ # Install latest corepack version to work around a bug with signatures
11
+ RUN npm install -g corepack@latest
10
12
RUN corepack enable
11
13
RUN pnpm install
12
14
RUN pnpm run build
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ COPY tsconfig.json pnpm-lock.yaml package.json postcss.config.cjs svelte.config.
6
6
COPY src /app/src
7
7
COPY static /app/static
8
8
9
+ # Install latest corepack version to work around a bug with signatures
10
+ RUN npm install -g corepack@latest
9
11
RUN corepack enable
10
12
RUN pnpm install
11
13
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ WORKDIR /data
5
5
6
6
COPY package.json pnpm-lock.yaml ./
7
7
8
+ # Install latest corepack version to work around a bug with signatures
9
+ RUN npm install -g corepack@latest
8
10
RUN corepack enable
9
11
RUN pnpm install
10
12
You can’t perform that action at this time.
0 commit comments