Skip to content

Commit

Permalink
feat: dist will be attached into releases
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp committed Mar 6, 2023
1 parent d1f8ae0 commit 5abbafa
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.idea
/dist
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/download/v7.27.1/pnpm-linuxstatic-x64" -o /bin/pnpm; \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.29.0/pnpm-linuxstatic-x64" -o /bin/pnpm; \
elif [ "$ARCH" = "aarch64" ]; then \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.27.1/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.29.0/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/download/v7.27.1/pnpm-linuxstatic-x64" -o /bin/pnpm; \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.29.0/pnpm-linuxstatic-x64" -o /bin/pnpm; \
elif [ "$ARCH" = "aarch64" ]; then \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.27.1/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.29.0/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/download/v7.27.1/pnpm-linuxstatic-x64" -o /bin/pnpm; \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.29.0/pnpm-linuxstatic-x64" -o /bin/pnpm; \
elif [ "$ARCH" = "aarch64" ]; then \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.27.1/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
curl -fsSL "https://github.com/pnpm/pnpm/releases/download/v7.29.0/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
fi \
&& chmod +x /bin/pnpm \
&& yarn global add turbo

0 comments on commit 5abbafa

Please sign in to comment.