Skip to content

Commit a0671ce

Browse files
committed
fix: pnpm version download link wrong
1 parent 6fa9add commit a0671ce

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

dist/18-alpine/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ RUN set -eux; \
2525
libc6-compat \
2626
&& ARCH=$(uname -m) && \
2727
if [ "$ARCH" = "x86_64" ]; then \
28-
curl -fsSL "https://github.com/pnpm/pnpm/releases/v7.18.2/download/pnpm-linuxstatic-x64" -o /bin/pnpm; \
28+
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.18.2/pnpm-linuxstatic-x64" -o /bin/pnpm; \
2929
elif [ "$ARCH" = "aarch64" ]; then \
30-
curl -fsSL "https://github.com/pnpm/pnpm/releases/v7.18.2/download/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
30+
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.18.2/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
3131
fi \
3232
&& chmod +x /bin/pnpm \
3333
&& yarn global add turbo

dist/19-alpine/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ RUN set -eux; \
2525
libc6-compat \
2626
&& ARCH=$(uname -m) && \
2727
if [ "$ARCH" = "x86_64" ]; then \
28-
curl -fsSL "https://github.com/pnpm/pnpm/releases/v7.18.2/download/pnpm-linuxstatic-x64" -o /bin/pnpm; \
28+
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.18.2/pnpm-linuxstatic-x64" -o /bin/pnpm; \
2929
elif [ "$ARCH" = "aarch64" ]; then \
30-
curl -fsSL "https://github.com/pnpm/pnpm/releases/v7.18.2/download/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
30+
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.18.2/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
3131
fi \
3232
&& chmod +x /bin/pnpm \
3333
&& yarn global add turbo

dist/lts-alpine/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ RUN set -eux; \
2525
libc6-compat \
2626
&& ARCH=$(uname -m) && \
2727
if [ "$ARCH" = "x86_64" ]; then \
28-
curl -fsSL "https://github.com/pnpm/pnpm/releases/v7.18.2/download/pnpm-linuxstatic-x64" -o /bin/pnpm; \
28+
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.18.2/pnpm-linuxstatic-x64" -o /bin/pnpm; \
2929
elif [ "$ARCH" = "aarch64" ]; then \
30-
curl -fsSL "https://github.com/pnpm/pnpm/releases/v7.18.2/download/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
30+
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.18.2/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
3131
fi \
3232
&& chmod +x /bin/pnpm \
3333
&& yarn global add turbo

src/Dockerfiles/all/Dockerfile.j2

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ RUN set -eux; \
2525
libc6-compat \
2626
&& ARCH=$(uname -m) && \
2727
if [ "$ARCH" = "x86_64" ]; then \
28-
curl -fsSL "https://github.com/pnpm/pnpm/releases/v{{ pnpm_version }}/download/pnpm-linuxstatic-x64" -o /bin/pnpm; \
28+
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v{{ pnpm_version }}/pnpm-linuxstatic-x64" -o /bin/pnpm; \
2929
elif [ "$ARCH" = "aarch64" ]; then \
30-
curl -fsSL "https://github.com/pnpm/pnpm/releases/v{{ pnpm_version }}/download/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
30+
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v{{ pnpm_version }}/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
3131
fi \
3232
&& chmod +x /bin/pnpm \
3333
&& yarn global add turbo

0 commit comments

Comments
 (0)