Skip to content

Commit c13c1de

Browse files
fix: fix PWA Dockerfile
1 parent e31071a commit c13c1de

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

pwa/Dockerfile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,9 @@ FROM node:lts AS node_upstream
88
# Base stage for dev and build
99
FROM node_upstream AS base
1010

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-
1511
WORKDIR /srv/app
1612

17-
RUN apk upgrade && \
18-
npm install -g corepack@latest && \
13+
RUN npm install -g corepack@latest && \
1914
corepack enable && \
2015
corepack prepare --activate pnpm@latest && \
2116
pnpm config -g set store-dir /.pnpm-store

0 commit comments

Comments
 (0)