From 9c0c6076b346a521d2a4de5204516e610c895806 Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Wed, 5 Apr 2023 09:25:28 +0200 Subject: [PATCH] update pnpm in dockerfile --- client/Dockerfile | 2 +- server/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/Dockerfile b/client/Dockerfile index 6348b0e1..a8f5686b 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -3,7 +3,7 @@ FROM node:lts-alpine AS base WORKDIR /app RUN apk add --no-cache g++ git curl make python3 libc6-compat \ - && curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm + && curl -fsSL https://get.pnpm.io/install.sh | node - add --global pnpm FROM base as dependencies diff --git a/server/Dockerfile b/server/Dockerfile index 2533ebdc..cc0f2f5c 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -3,7 +3,7 @@ FROM node:lts-alpine AS base WORKDIR /app RUN apk add --no-cache g++ git curl make python3 libc6-compat \ - && curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm + && curl -fsSL https://get.pnpm.io/install.sh | node - add --global pnpm FROM base AS dependencies @@ -29,7 +29,7 @@ WORKDIR /app RUN apt-get update \ && apt-get install -y curl build-essential \ - && curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm + && curl -fsSL https://get.pnpm.io/install.sh | node - add --global pnpm COPY --from=builder /app/package.json /app/pnpm-*.yaml /app/turbo.json ./ COPY --from=builder /app/server/package.json ./server/package.json