Skip to content

Commit

Permalink
fix: pnpm version download link wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp committed Dec 20, 2022
1 parent 6fa9add commit a0671ce
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions dist/18-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ RUN set -eux; \
libc6-compat \
&& ARCH=$(uname -m) && \
if [ "$ARCH" = "x86_64" ]; then \
curl -fsSL "https://github.com/pnpm/pnpm/releases/v7.18.2/download/pnpm-linuxstatic-x64" -o /bin/pnpm; \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.18.2/pnpm-linuxstatic-x64" -o /bin/pnpm; \
elif [ "$ARCH" = "aarch64" ]; then \
curl -fsSL "https://github.com/pnpm/pnpm/releases/v7.18.2/download/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.18.2/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
fi \
&& chmod +x /bin/pnpm \
&& yarn global add turbo
4 changes: 2 additions & 2 deletions dist/19-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ RUN set -eux; \
libc6-compat \
&& ARCH=$(uname -m) && \
if [ "$ARCH" = "x86_64" ]; then \
curl -fsSL "https://github.com/pnpm/pnpm/releases/v7.18.2/download/pnpm-linuxstatic-x64" -o /bin/pnpm; \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.18.2/pnpm-linuxstatic-x64" -o /bin/pnpm; \
elif [ "$ARCH" = "aarch64" ]; then \
curl -fsSL "https://github.com/pnpm/pnpm/releases/v7.18.2/download/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.18.2/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
fi \
&& chmod +x /bin/pnpm \
&& yarn global add turbo
4 changes: 2 additions & 2 deletions dist/lts-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ RUN set -eux; \
libc6-compat \
&& ARCH=$(uname -m) && \
if [ "$ARCH" = "x86_64" ]; then \
curl -fsSL "https://github.com/pnpm/pnpm/releases/v7.18.2/download/pnpm-linuxstatic-x64" -o /bin/pnpm; \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.18.2/pnpm-linuxstatic-x64" -o /bin/pnpm; \
elif [ "$ARCH" = "aarch64" ]; then \
curl -fsSL "https://github.com/pnpm/pnpm/releases/v7.18.2/download/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.18.2/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
fi \
&& chmod +x /bin/pnpm \
&& yarn global add turbo
4 changes: 2 additions & 2 deletions src/Dockerfiles/all/Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ RUN set -eux; \
libc6-compat \
&& ARCH=$(uname -m) && \
if [ "$ARCH" = "x86_64" ]; then \
curl -fsSL "https://github.com/pnpm/pnpm/releases/v{{ pnpm_version }}/download/pnpm-linuxstatic-x64" -o /bin/pnpm; \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v{{ pnpm_version }}/pnpm-linuxstatic-x64" -o /bin/pnpm; \
elif [ "$ARCH" = "aarch64" ]; then \
curl -fsSL "https://github.com/pnpm/pnpm/releases/v{{ pnpm_version }}/download/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v{{ pnpm_version }}/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
fi \
&& chmod +x /bin/pnpm \
&& yarn global add turbo

0 comments on commit a0671ce

Please sign in to comment.