From 9270739eb682ae49fca5e31444fa43b0fa2b00ac Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sat, 20 Jul 2024 14:13:55 -0600 Subject: [PATCH] feat(heroku-buildpacks): upgrade heroku to 24 version --- Dockerfile | 2 +- server/utils/builders/heroku.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8075325c..e15e6bd6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -72,7 +72,7 @@ RUN curl -sSL https://nixpacks.com/install.sh -o install.sh \ && pnpm install -g tsx # Install buildpacks -RUN curl -sSL "https://github.com/buildpacks/pack/releases/download/v0.32.1/pack-v0.32.1-linux.tgz" | tar -C /usr/local/bin/ --no-same-owner -xzv pack +RUN curl -sSL "https://github.com/buildpacks/pack/releases/download/v0.35.0/pack-v0.35.0-linux.tgz" | tar -C /usr/local/bin/ --no-same-owner -xzv pack # Expose port EXPOSE 3000 diff --git a/server/utils/builders/heroku.ts b/server/utils/builders/heroku.ts index 26d79816..ebe872b2 100644 --- a/server/utils/builders/heroku.ts +++ b/server/utils/builders/heroku.ts @@ -19,7 +19,7 @@ export const buildHeroku = async ( "--path", buildAppDirectory, "--builder", - "heroku/builder:22", + "heroku/builder:24", ]; for (const env of envVariables) {