From 8f14d854a0fa0c39b1ab11212e24793c8c376e4c Mon Sep 17 00:00:00 2001 From: Moritz Mauruschat <60385231+MauruschatM@users.noreply.github.com> Date: Tue, 6 May 2025 13:32:16 +0200 Subject: [PATCH 1/2] Update railpack to 0.064 --- packages/server/src/utils/builders/railpack.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/server/src/utils/builders/railpack.ts b/packages/server/src/utils/builders/railpack.ts index 55fd40496..481dc0faa 100644 --- a/packages/server/src/utils/builders/railpack.ts +++ b/packages/server/src/utils/builders/railpack.ts @@ -72,7 +72,7 @@ export const buildRailpack = async ( ] : []), "--build-arg", - "BUILDKIT_SYNTAX=ghcr.io/railwayapp/railpack-frontend:v0.0.55", + "BUILDKIT_SYNTAX=ghcr.io/railwayapp/railpack-frontend:v0.0.64", "-f", `${buildAppDirectory}/railpack-plan.json`, "--output", @@ -152,7 +152,7 @@ export const getRailpackCommand = ( ] : []), "--build-arg", - "BUILDKIT_SYNTAX=ghcr.io/railwayapp/railpack-frontend:v0.0.55", + "BUILDKIT_SYNTAX=ghcr.io/railwayapp/railpack-frontend:v0.0.64", "-f", `${buildAppDirectory}/railpack-plan.json`, "--output", From cd998c37f143abc34207681f847b113cb98d3f95 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Tue, 6 May 2025 23:04:58 -0600 Subject: [PATCH 2/2] refactor: update railpack --- Dockerfile | 2 +- packages/server/src/setup/server-setup.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1e104eebc..98ed9851a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -56,7 +56,7 @@ RUN curl -sSL https://nixpacks.com/install.sh -o install.sh \ && pnpm install -g tsx # Install Railpack -ARG RAILPACK_VERSION=0.0.37 +ARG RAILPACK_VERSION=0.0.64 RUN curl -sSL https://railpack.com/install.sh | bash # Install buildpacks diff --git a/packages/server/src/setup/server-setup.ts b/packages/server/src/setup/server-setup.ts index bb0d34d8b..d1d42257d 100644 --- a/packages/server/src/setup/server-setup.ts +++ b/packages/server/src/setup/server-setup.ts @@ -587,7 +587,7 @@ const installRailpack = () => ` if command_exists railpack; then echo "Railpack already installed ✅" else - export RAILPACK_VERSION=0.0.37 + export RAILPACK_VERSION=0.0.64 bash -c "$(curl -fsSL https://railpack.com/install.sh)" echo "Railpack version $RAILPACK_VERSION installed ✅" fi