We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e31071a commit c13c1deCopy full SHA for c13c1de
pwa/Dockerfile
@@ -8,14 +8,9 @@ FROM node:lts AS node_upstream
8
# Base stage for dev and build
9
FROM node_upstream AS base
10
11
-# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
12
-# hadolint ignore=DL3018
13
-RUN apk add --no-cache libc6-compat
14
-
15
WORKDIR /srv/app
16
17
-RUN apk upgrade && \
18
- npm install -g corepack@latest && \
+RUN npm install -g corepack@latest && \
19
corepack enable && \
20
corepack prepare --activate pnpm@latest && \
21
pnpm config -g set store-dir /.pnpm-store
0 commit comments