From 5abbafad8370a9876e3c67cc7d08ba159955327b Mon Sep 17 00:00:00 2001 From: lotyp Date: Mon, 6 Mar 2023 19:16:42 +0200 Subject: [PATCH] feat: dist will be attached into releases --- .gitignore | 1 + dist/18-alpine/Dockerfile | 4 ++-- dist/19-alpine/Dockerfile | 4 ++-- dist/lts-alpine/Dockerfile | 4 ++-- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 485dee6..97e7429 100755 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .idea +/dist diff --git a/dist/18-alpine/Dockerfile b/dist/18-alpine/Dockerfile index 9b0d449..0a79c2b 100644 --- a/dist/18-alpine/Dockerfile +++ b/dist/18-alpine/Dockerfile @@ -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 diff --git a/dist/19-alpine/Dockerfile b/dist/19-alpine/Dockerfile index 83139a6..0e0d721 100644 --- a/dist/19-alpine/Dockerfile +++ b/dist/19-alpine/Dockerfile @@ -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 diff --git a/dist/lts-alpine/Dockerfile b/dist/lts-alpine/Dockerfile index 7067462..c201000 100644 --- a/dist/lts-alpine/Dockerfile +++ b/dist/lts-alpine/Dockerfile @@ -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