diff --git a/Dockerfile b/Dockerfile index aec9eda..2e9df89 100755 --- a/Dockerfile +++ b/Dockerfile @@ -7,9 +7,8 @@ ENV NPM_CONFIG_REGISTRY=https://mirror-npm.runflare.com # Change Alpine repo RUN sed -i 's|https://dl-cdn.alpinelinux.org/alpine|https://mirror.de.velop.ir/alpine|g' /etc/apk/repositories -# Runflare build hosts cannot reach registry.npmjs.org; use their npm mirror. -# RUN npm install -g pnpm@9.15.9 --registry=https://mirror-npm.runflare.com -# RUN npm install -g pnpm@9.15.9 +# Install pnpm globally (uses NPM_CONFIG_REGISTRY mirror above). +RUN npm install -g pnpm@9.15.9 # Stage 2: Install all dependencies (including dev) FROM base AS deps