diff --git a/.circleci/config.yml b/.circleci/config.yml index dd91309d3..ff3a65c93 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -99,14 +99,14 @@ workflows: only: - main - canary - - 379-preview-deployment + - fix/nixpacks-version - build-arm64: filters: branches: only: - main - canary - - 379-preview-deployment + - fix/nixpacks-version - combine-manifests: requires: - build-amd64 @@ -116,4 +116,4 @@ workflows: only: - main - canary - - 379-preview-deployment + - fix/nixpacks-version diff --git a/Dockerfile b/Dockerfile index 74b70db0e..51be6469f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,6 +48,8 @@ RUN curl -fsSL https://get.docker.com -o get-docker.sh && sh get-docker.sh && rm # Install Nixpacks and tsx # | VERBOSE=1 VERSION=1.21.0 bash + +ARG NIXPACKS_VERSION=1.29.1 RUN curl -sSL https://nixpacks.com/install.sh -o install.sh \ && chmod +x install.sh \ && ./install.sh \ diff --git a/apps/dokploy/package.json b/apps/dokploy/package.json index 60a05a80c..292d3efbc 100644 --- a/apps/dokploy/package.json +++ b/apps/dokploy/package.json @@ -1,6 +1,6 @@ { "name": "dokploy", - "version": "v0.14.0", + "version": "v0.14.1", "private": true, "license": "Apache-2.0", "type": "module", diff --git a/packages/server/src/setup/server-setup.ts b/packages/server/src/setup/server-setup.ts index 81e497795..55ebdc6be 100644 --- a/packages/server/src/setup/server-setup.ts +++ b/packages/server/src/setup/server-setup.ts @@ -522,7 +522,8 @@ const installNixpacks = () => ` if command_exists nixpacks; then echo "Nixpacks already installed ✅" else - VERSION=1.28.1 bash -c "$(curl -fsSL https://nixpacks.com/install.sh)" + export NIXPACKS_VERSION=1.29.1 + bash -c "$(curl -fsSL https://nixpacks.com/install.sh)" echo "Nixpacks version 1.28.1 installed ✅" fi `;