Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: Unable to deploy with NIXPACKS_NODE_VERSION = "22" #4890

Closed
actraiser opened this issue Jan 21, 2025 · 12 comments
Closed

[Bug]: Unable to deploy with NIXPACKS_NODE_VERSION = "22" #4890

actraiser opened this issue Jan 21, 2025 · 12 comments

Comments

@actraiser
Copy link

actraiser commented Jan 21, 2025

Error Message and Logs

First of all, after upgrading, in all projects i get the "The latest configuration has not been applied" popup. When i try to Redeploy or push a new release for my app, the installation will stall (these are the final lines). My App is deployed from Github.

2025-Jan-21 13:39:23.276589
#10 CACHED
2025-Jan-21 13:39:23.276589
2025-Jan-21 13:39:23.276589
#11 [stage-0  6/14] COPY . /app/.
2025-Jan-21 13:39:23.628619
#11 DONE 0.5s
2025-Jan-21 13:39:23.779465
#12 [stage-0  7/14] RUN --mount=type=cache,id=rk88s40-/root/local/share/pnpm/store/v3,target=/root/.local/share/pnpm/store/v3 npm install -g corepack pm2
2025-Jan-21 13:39:23.817098
#12 0.188 npm warn config production Use `--omit=dev` instead.

..... NO MORE LOGS FROM THIS POINT AND DEPLOY RUNS FOREVER ....

before the upgrade, the app deployment would instead continue like this:

#10 [stage-0  5/14] RUN sudo apt-get update && sudo apt-get install -y --no-install-recommends curl wget
2025-Jan-21 11:35:30.187438
#10 CACHED
2025-Jan-21 11:35:30.187438
2025-Jan-21 11:35:30.187438
#11 [stage-0  6/14] COPY . /app/.
2025-Jan-21 11:35:30.530163
#11 DONE 0.5s
2025-Jan-21 11:35:30.681611
#12 [stage-0  7/14] RUN --mount=type=cache,id=rk88s40-/root/local/share/pnpm/store/v3,target=/root/.local/share/pnpm/store/v3 npm install -g corepack pm2
2025-Jan-21 11:35:33.206173
#12 2.675 
2025-Jan-21 11:35:33.206173
#12 2.675 added 137 packages, and changed 1 package in 3s
2025-Jan-21 11:35:33.206173
#12 2.675

..... and so on until sucessful deployment....
 

I have no idea what to check. I tried downgrading to Beta 380 but since database schema changed, i can not access my projects then anymore. So I had to revert back to the latest 384...,

Greets
-act

Coolify Version

v4.0.0-beta.384

@actraiser actraiser added 🐛 Bug Reported issues that need to be reproduced by the team. 🔍 Triage Issues that need assessment and prioritization. labels Jan 21, 2025
@actraiser
Copy link
Author

actraiser commented Jan 21, 2025

after further investigation, this seems to be a problem with nixpacks. I had the following node version configured in nixpacks.toml for my app.

NIXPACKS_NODE_VERSION = "22"

This worked fine until upgrading to Coolify Beta 384. Downgrading my Node Version here to "20" will make the build process succeed again.

Can you let me know if something has changed regarding nixpacks integration between Beta 380 and Beta 384?

Greets
-act

@peaklabs-dev
Copy link
Member

What are you deploying?
maybe it is because of this #4871 (comment)

@peaklabs-dev peaklabs-dev added 💤 Waiting for feedback Issues awaiting a response from the author. and removed 🔍 Triage Issues that need assessment and prioritization. labels Jan 21, 2025
@peaklabs-dev peaklabs-dev added this to the v4.0.0 Stable Release milestone Jan 21, 2025
@actraiser
Copy link
Author

actraiser commented Jan 21, 2025

What are you deploying? maybe it is because of this #4871 (comment)

I deployed a nodejs app. nixpacks should build and spin up using node v22 to run the app. This worked before but now i must specify "Node 20" in the nixpacks.toml file for the build to succeed. Any Idea why is Node 22 not working anymore since Beta 384?

-act

@peaklabs-dev
Copy link
Member

Maybe this is Nixpacks related. I will update Nixpacks to the latest version in the next update and then we can investigate further.

@peaklabs-dev peaklabs-dev removed the 💤 Waiting for feedback Issues awaiting a response from the author. label Jan 21, 2025
@peaklabs-dev
Copy link
Member

The new version has just been released, could you please re-test and let me know if this is fixed?

@peaklabs-dev peaklabs-dev added the 💤 Waiting for feedback Issues awaiting a response from the author. label Jan 22, 2025
@peaklabs-dev peaklabs-dev changed the title [Bug]: Unable to deploy after upgrading to v4.0.0-beta.384 [Bug]: Unable to deploy with NIXPACKS_NODE_VERSION = "22" Jan 22, 2025
@actraiser
Copy link
Author

actraiser commented Jan 22, 2025

Unfortunately using v4.0.0-beta.386 did not fix the problem for me. The deployment does still not proceed from this point when using Node 22 in nixpacks.toml (defined as NIXPACKS_NODE_VERSION = "22" )

2025-Jan-22 11:22:16.767854
#17 [stage-0 12/19] RUN --mount=type=cache,id=rk88s40-/root/local/share/pnpm/store/v3,target=/root/.local/share/pnpm/store/v3 npm install -g corepack pm2
2025-Jan-22 11:22:16.767854
#17 0.115 npm warn config production Use `--omit=dev` instead.

Reverting to NIXPACKS_NODE_VERSION = "20" lets the build pass again. Is there any log I should inspect to get more information what happens at this point during the build process?

-act

@peaklabs-dev
Copy link
Member

Can you please copy and paste the debug log of the deployment.

Also, can you maybe give me a sample repo so I can better reproduce the problem. Because I tested it with our sample repo and I cannot reproduce the issue, so this issue is probably related to what you are deploying because for my deplyments node 22 works just fine.

@actraiser
Copy link
Author

actraiser commented Jan 22, 2025

I will create a basic repo over the weekend that mimics the application and deployment and let you know. Thank you for your work!

-act

@peaklabs-dev peaklabs-dev added 💤 Waiting for feedback Issues awaiting a response from the author. and removed 💤 Waiting for feedback Issues awaiting a response from the author. labels Jan 22, 2025
@actraiser
Copy link
Author

actraiser commented Jan 22, 2025

Also, can you maybe give me a sample repo so I can better reproduce the problem.

I had some time, so here is the example repo with Node 22 configured in the toml file.

https://github.com/actraiser/basic-react-router-nixpacks-app

I also reproduced the problem with this Repo with Beta 388 - steps I did:

  1. Create new Coolify Project
  2. Add Github-Project - Select Project
  3. Deploy
  4. It will stall build process a t this point until manually cancelling it
2025-Jan-22 17:22:00.609441
#18 [stage-0 12/19] RUN --mount=type=cache,id=zsccwc80ko44gg0oww8oo0cs-/root/local/share/pnpm/store/v3,target=/root/.local/share/pnpm/store/v3 npm install -g corepack pm2
2025-Jan-22 17:22:00.609441
#18 0.121 npm warn config production Use `--omit=dev` instead.

This is the full debug.log

2025-Jan-22 17:08:45.029241
Starting deployment of actraiser/basic-react-router-nixpacks-app:main to localhost.
2025-Jan-22 17:08:45.168139
Preparing container with helper image: ghcr.io/coollabsio/coolify-helper:1.0.5.
2025-Jan-22 17:08:45.248839
docker rm -f kok8gc8w8oow08gkgcsosw0c
2025-Jan-22 17:08:45.248839
Error response from daemon: No such container: kok8gc8w8oow08gkgcsosw0c
2025-Jan-22 17:08:45.341629
docker run -d --network coolify --name kok8gc8w8oow08gkgcsosw0c --rm -v /root/.docker/config.json:/root/.docker/config.json:ro -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/coollabsio/coolify-helper:1.0.5
2025-Jan-22 17:08:45.341629
f7c6b05aa0771efb83fc42ecde30dec62b6506e42cd2f5badbfb063c19bc8ea4
2025-Jan-22 17:08:46.472059
docker exec kok8gc8w8oow08gkgcsosw0c bash -c 'GIT_SSH_COMMAND="ssh -o ConnectTimeout=30 -p 22 -o Port=22 -o LogLevel=ERROR -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" git ls-remote [https://x-access-token:<REDACTED>@github.com/actraiser/basic-react-router-nixpacks-app.git](https://x-access-token:%3CREDACTED%3E@github.com/actraiser/basic-react-router-nixpacks-app.git) main'
2025-Jan-22 17:08:46.472059
9b879ae67008b6b764d40c4d3607c4c05499194a	refs/heads/main
2025-Jan-22 17:08:46.606707
Image not found (zsccwc80ko44gg0oww8oo0cs:9b879ae67008b6b764d40c4d3607c4c05499194a). Building new image.
2025-Jan-22 17:08:46.826242
----------------------------------------
2025-Jan-22 17:08:46.828382
Importing actraiser/basic-react-router-nixpacks-app:main (commit sha HEAD) to /artifacts/kok8gc8w8oow08gkgcsosw0c.
2025-Jan-22 17:08:46.997142
docker exec kok8gc8w8oow08gkgcsosw0c bash -c 'git clone -b "main" [https://x-access-token:<REDACTED>@github.com/actraiser/basic-react-router-nixpacks-app.git](https://x-access-token:%3CREDACTED%3E@github.com/actraiser/basic-react-router-nixpacks-app.git) /artifacts/kok8gc8w8oow08gkgcsosw0c && cd /artifacts/kok8gc8w8oow08gkgcsosw0c && GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" git submodule update --init --recursive && cd /artifacts/kok8gc8w8oow08gkgcsosw0c && GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" git lfs pull'
2025-Jan-22 17:08:46.997142
Cloning into '/artifacts/kok8gc8w8oow08gkgcsosw0c'...
2025-Jan-22 17:08:48.074032
docker exec kok8gc8w8oow08gkgcsosw0c bash -c 'cd /artifacts/kok8gc8w8oow08gkgcsosw0c && git log -1 9b879ae67008b6b764d40c4d3607c4c05499194a --pretty=%B'
2025-Jan-22 17:08:48.074032
removed Dockerfile
2025-Jan-22 17:08:48.238278
Generating nixpacks configuration with: nixpacks plan -f toml  /artifacts/kok8gc8w8oow08gkgcsosw0c
2025-Jan-22 17:08:48.409818
docker exec kok8gc8w8oow08gkgcsosw0c bash -c 'nixpacks plan -f toml  /artifacts/kok8gc8w8oow08gkgcsosw0c'
2025-Jan-22 17:08:48.409818
providers = []
2025-Jan-22 17:08:48.409818
buildImage = 'ghcr.io/railwayapp/nixpacks:ubuntu-1736208272'
2025-Jan-22 17:08:48.409818
2025-Jan-22 17:08:48.409818
[variables]
2025-Jan-22 17:08:48.409818
CI = 'true'
2025-Jan-22 17:08:48.409818
NIXPACKS_METADATA = 'node'
2025-Jan-22 17:08:48.409818
NIXPACKS_NODE_VERSION = '22'
2025-Jan-22 17:08:48.409818
NIXPACKS_SPA_OUTPUT_DIR = 'dist'
2025-Jan-22 17:08:48.409818
NODE_ENV = 'production'
2025-Jan-22 17:08:48.409818
NPM_CONFIG_PRODUCTION = 'false'
2025-Jan-22 17:08:48.409818
2025-Jan-22 17:08:48.409818
[staticAssets]
2025-Jan-22 17:08:48.409818
Caddyfile = '''
2025-Jan-22 17:08:48.409818
# global options
2025-Jan-22 17:08:48.409818
{
2025-Jan-22 17:08:48.409818
	admin off # theres no need for the admin api in railway's environment
2025-Jan-22 17:08:48.409818
	persist_config off # storage isn't persistent anyway
2025-Jan-22 17:08:48.409818
	auto_https off # railway handles https for us, this would cause issues if left enabled
2025-Jan-22 17:08:48.409818
	# runtime logs
2025-Jan-22 17:08:48.409818
	log {
2025-Jan-22 17:08:48.409818
		format json # set runtime log format to json mode 
2025-Jan-22 17:08:48.409818
	}
2025-Jan-22 17:08:48.409818
	# server options
2025-Jan-22 17:08:48.409818
	servers {
2025-Jan-22 17:08:48.409818
		trusted_proxies static private_ranges 100.0.0.0/8 # trust railway's proxy
2025-Jan-22 17:08:48.409818
	}
2025-Jan-22 17:08:48.409818
}
2025-Jan-22 17:08:48.409818
2025-Jan-22 17:08:48.409818
# site block, listens on the $PORT environment variable, automatically assigned by railway
2025-Jan-22 17:08:48.409818
:{$PORT:3000} {
2025-Jan-22 17:08:48.409818
	# access logs
2025-Jan-22 17:08:48.409818
	log {
2025-Jan-22 17:08:48.409818
		format json # set access log format to json mode
2025-Jan-22 17:08:48.409818
	}
2025-Jan-22 17:08:48.409818
2025-Jan-22 17:08:48.409818
	# health check for railway
2025-Jan-22 17:08:48.409818
	rewrite /health /*
2025-Jan-22 17:08:48.409818
2025-Jan-22 17:08:48.409818
	# serve from the 'dist' folder (Vite builds into the 'dist' folder)
2025-Jan-22 17:08:48.409818
    root * ../app/{$NIXPACKS_SPA_OUTPUT_DIR}
2025-Jan-22 17:08:48.409818
2025-Jan-22 17:08:48.409818
	# enable gzipping responses
2025-Jan-22 17:08:48.409818
	encode gzip
2025-Jan-22 17:08:48.409818
2025-Jan-22 17:08:48.409818
	# serve files from 'dist'
2025-Jan-22 17:08:48.409818
	file_server 
2025-Jan-22 17:08:48.409818
2025-Jan-22 17:08:48.409818
	# if path doesn't exist, redirect it to 'index.html' for client side routing
2025-Jan-22 17:08:48.409818
	try_files {path} /index.html
2025-Jan-22 17:08:48.409818
}'''
2025-Jan-22 17:08:48.409818
[phases.build]
2025-Jan-22 17:08:48.409818
dependsOn = ['install']
2025-Jan-22 17:08:48.409818
cmds = ['pnpm run build']
2025-Jan-22 17:08:48.409818
cacheDirectories = ['node_modules/.cache']
2025-Jan-22 17:08:48.409818
2025-Jan-22 17:08:48.409818
[phases.caddy]
2025-Jan-22 17:08:48.409818
dependsOn = ['setup']
2025-Jan-22 17:08:48.409818
nixPkgs = ['caddy']
2025-Jan-22 17:08:48.409818
nixOverlays = []
2025-Jan-22 17:08:48.409818
nixpkgsArchive = 'ba913eda2df8eb72147259189d55932012df6301'
2025-Jan-22 17:08:48.409818
cmds = ['caddy fmt --overwrite /assets/Caddyfile']
2025-Jan-22 17:08:48.409818
2025-Jan-22 17:08:48.409818
[phases.install]
2025-Jan-22 17:08:48.409818
dependsOn = ['setup']
2025-Jan-22 17:08:48.409818
cmds = [
2025-Jan-22 17:08:48.409818
    'npm install -g corepack pm2',
2025-Jan-22 17:08:48.409818
    'corepack enable',
2025-Jan-22 17:08:48.409818
    'corepack prepare pnpm@9.15.4 --activate',
2025-Jan-22 17:08:48.409818
    'pnpm install',
2025-Jan-22 17:08:48.409818
]
2025-Jan-22 17:08:48.409818
cacheDirectories = ['/root/.local/share/pnpm/store/v3']
2025-Jan-22 17:08:48.409818
paths = ['/app/node_modules/.bin']
2025-Jan-22 17:08:48.409818
2025-Jan-22 17:08:48.409818
[phases.setup]
2025-Jan-22 17:08:48.409818
nixPkgs = [
2025-Jan-22 17:08:48.409818
    'nodejs_22',
2025-Jan-22 17:08:48.409818
    'pnpm-9_x',
2025-Jan-22 17:08:48.409818
]
2025-Jan-22 17:08:48.409818
nixOverlays = ['https://github.com/railwayapp/nix-npm-overlay/archive/main.tar.gz']
2025-Jan-22 17:08:48.409818
nixpkgsArchive = '5624e1334b26ddc18da37e132b6fa8e93b481468'
2025-Jan-22 17:08:48.409818
2025-Jan-22 17:08:48.409818
[start]
2025-Jan-22 17:08:48.409818
cmd = 'export APP_VERSION=$(date --iso-8601=seconds); pm2-docker start ecosystem.config.cjs'
2025-Jan-22 17:08:48.598262
docker exec kok8gc8w8oow08gkgcsosw0c bash -c 'nixpacks detect /artifacts/kok8gc8w8oow08gkgcsosw0c'
2025-Jan-22 17:08:48.598262
node
2025-Jan-22 17:08:48.605234
Found application type: node.
2025-Jan-22 17:08:48.606876
If you need further customization, please check the documentation of Nixpacks: https://nixpacks.com/docs/providers/node
2025-Jan-22 17:08:48.617715
Final Nixpacks plan: {
2025-Jan-22 17:08:48.617715
    "providers": [],
2025-Jan-22 17:08:48.617715
    "buildImage": "ghcr.io\/railwayapp\/nixpacks:ubuntu-1736208272",
2025-Jan-22 17:08:48.617715
    "variables": {
2025-Jan-22 17:08:48.617715
        "CI": "true",
2025-Jan-22 17:08:48.617715
        "NIXPACKS_METADATA": "node",
2025-Jan-22 17:08:48.617715
        "NIXPACKS_NODE_VERSION": "22",
2025-Jan-22 17:08:48.617715
        "NIXPACKS_SPA_OUTPUT_DIR": "dist",
2025-Jan-22 17:08:48.617715
        "NODE_ENV": "production",
2025-Jan-22 17:08:48.617715
        "NPM_CONFIG_PRODUCTION": "false",
2025-Jan-22 17:08:48.617715
        "SOURCE_COMMIT": "9b879ae67008b6b764d40c4d3607c4c05499194a"
2025-Jan-22 17:08:48.617715
    },
2025-Jan-22 17:08:48.617715
    "staticAssets": {
2025-Jan-22 17:08:48.617715
        "Caddyfile": "# global options\n{\n admin off # theres no need for the admin api in railway's environment\n persist_config off # storage isn't persistent anyway\n auto_https off # railway handles https for us, this would cause issues if left enabled\n # runtime logs\n log {\n  format json # set runtime log format to json mode \n }\n # server options\n servers {\n  trusted_proxies static private_ranges 100.0.0.0\/8 # trust railway's proxy\n }\n}\n\n# site block, listens on the $PORT environment variable, automatically assigned by railway\n:{$PORT:3000} {\n # access logs\n log {\n  format json # set access log format to json mode\n }\n\n # health check for railway\n rewrite \/health \/*\n\n # serve from the 'dist' folder (Vite builds into the 'dist' folder)\n    root * ..\/app\/{$NIXPACKS_SPA_OUTPUT_DIR}\n\n # enable gzipping responses\n encode gzip\n\n # serve files from 'dist'\n file_server \n\n # if path doesn't exist, redirect it to 'index.html' for client side routing\n try_files {path} \/index.html\n}"
2025-Jan-22 17:08:48.617715
    },
2025-Jan-22 17:08:48.617715
    "phases": {
2025-Jan-22 17:08:48.617715
        "build": {
2025-Jan-22 17:08:48.617715
            "dependsOn": [
2025-Jan-22 17:08:48.617715
                "install"
2025-Jan-22 17:08:48.617715
            ],
2025-Jan-22 17:08:48.617715
            "cmds": [
2025-Jan-22 17:08:48.617715
                "pnpm run build"
2025-Jan-22 17:08:48.617715
            ],
2025-Jan-22 17:08:48.617715
            "cacheDirectories": [
2025-Jan-22 17:08:48.617715
                "node_modules\/.cache"
2025-Jan-22 17:08:48.617715
            ]
2025-Jan-22 17:08:48.617715
        },
2025-Jan-22 17:08:48.617715
        "caddy": {
2025-Jan-22 17:08:48.617715
            "dependsOn": [
2025-Jan-22 17:08:48.617715
                "setup"
2025-Jan-22 17:08:48.617715
            ],
2025-Jan-22 17:08:48.617715
            "nixPkgs": [
2025-Jan-22 17:08:48.617715
                "caddy"
2025-Jan-22 17:08:48.617715
            ],
2025-Jan-22 17:08:48.617715
            "nixOverlays": [],
2025-Jan-22 17:08:48.617715
            "nixpkgsArchive": "ba913eda2df8eb72147259189d55932012df6301",
2025-Jan-22 17:08:48.617715
            "cmds": [
2025-Jan-22 17:08:48.617715
                "caddy fmt --overwrite \/assets\/Caddyfile"
2025-Jan-22 17:08:48.617715
            ]
2025-Jan-22 17:08:48.617715
        },
2025-Jan-22 17:08:48.617715
        "install": {
2025-Jan-22 17:08:48.617715
            "dependsOn": [
2025-Jan-22 17:08:48.617715
                "setup"
2025-Jan-22 17:08:48.617715
            ],
2025-Jan-22 17:08:48.617715
            "cmds": [
2025-Jan-22 17:08:48.617715
                "npm install -g corepack pm2",
2025-Jan-22 17:08:48.617715
                "corepack enable",
2025-Jan-22 17:08:48.617715
                "corepack prepare pnpm@9.15.4 --activate",
2025-Jan-22 17:08:48.617715
                "pnpm install"
2025-Jan-22 17:08:48.617715
            ],
2025-Jan-22 17:08:48.617715
            "cacheDirectories": [
2025-Jan-22 17:08:48.617715
                "\/root\/.local\/share\/pnpm\/store\/v3"
2025-Jan-22 17:08:48.617715
            ],
2025-Jan-22 17:08:48.617715
            "paths": [
2025-Jan-22 17:08:48.617715
                "\/app\/node_modules\/.bin"
2025-Jan-22 17:08:48.617715
            ]
2025-Jan-22 17:08:48.617715
        },
2025-Jan-22 17:08:48.617715
        "setup": {
2025-Jan-22 17:08:48.617715
            "nixPkgs": [
2025-Jan-22 17:08:48.617715
                "nodejs_22",
2025-Jan-22 17:08:48.617715
                "pnpm-9_x"
2025-Jan-22 17:08:48.617715
            ],
2025-Jan-22 17:08:48.617715
            "nixOverlays": [
2025-Jan-22 17:08:48.617715
                "https:\/\/github.com\/railwayapp\/nix-npm-overlay\/archive\/main.tar.gz"
2025-Jan-22 17:08:48.617715
            ],
2025-Jan-22 17:08:48.617715
            "nixpkgsArchive": "5624e1334b26ddc18da37e132b6fa8e93b481468",
2025-Jan-22 17:08:48.617715
            "aptPkgs": [
2025-Jan-22 17:08:48.617715
                "curl",
2025-Jan-22 17:08:48.617715
                "wget"
2025-Jan-22 17:08:48.617715
            ]
2025-Jan-22 17:08:48.617715
        }
2025-Jan-22 17:08:48.617715
    },
2025-Jan-22 17:08:48.617715
    "start": {
2025-Jan-22 17:08:48.617715
        "cmd": "export APP_VERSION=$(date --iso-8601=seconds); pm2-docker start ecosystem.config.cjs"
2025-Jan-22 17:08:48.617715
    }
2025-Jan-22 17:08:48.617715
}
2025-Jan-22 17:08:49.222426
----------------------------------------
2025-Jan-22 17:08:49.224325
Building docker image started.
2025-Jan-22 17:08:49.225578
To check the current progress, click on Show Debug Logs.
2025-Jan-22 17:08:49.489940
docker exec kok8gc8w8oow08gkgcsosw0c bash -c 'nixpacks build -c /artifacts/thegameplan.json --cache-key 'zsccwc80ko44gg0oww8oo0cs' --no-error-without-start -n zsccwc80ko44gg0oww8oo0cs:9b879ae67008b6b764d40c4d3607c4c05499194a /artifacts/kok8gc8w8oow08gkgcsosw0c -o /artifacts/kok8gc8w8oow08gkgcsosw0c'
2025-Jan-22 17:08:49.489940
2025-Jan-22 17:08:49.489940
╔══════════════════════════════ Nixpacks v1.32.0 ══════════════════════════════╗
2025-Jan-22 17:08:49.489940
║ setup      │ nodejs_22, pnpm-9_x, curl, wget                                 ║
2025-Jan-22 17:08:49.489940
║──────────────────────────────────────────────────────────────────────────────║
2025-Jan-22 17:08:49.489940
║ caddy      │ pkgs: caddy                                                     ║
2025-Jan-22 17:08:49.489940
║            │ cmds: caddy fmt --overwrite /assets/Caddyfile                   ║
2025-Jan-22 17:08:49.489940
║──────────────────────────────────────────────────────────────────────────────║
2025-Jan-22 17:08:49.489940
║ install    │ npm install -g corepack pm2                                     ║
2025-Jan-22 17:08:49.489940
║            │ corepack enable                                                 ║
2025-Jan-22 17:08:49.489940
║            │ corepack prepare pnpm@9.15.4 --activate                         ║
2025-Jan-22 17:08:49.489940
║            │ pnpm install                                                    ║
2025-Jan-22 17:08:49.489940
║──────────────────────────────────────────────────────────────────────────────║
2025-Jan-22 17:08:49.489940
║ build      │ pnpm run build                                                  ║
2025-Jan-22 17:08:49.489940
║──────────────────────────────────────────────────────────────────────────────║
2025-Jan-22 17:08:49.489940
║ start      │ export APP_VERSION=$(date --iso-8601=seconds); pm2-docker start ║
2025-Jan-22 17:08:49.489940
║            │ ecosystem.config.cjs                                            ║
2025-Jan-22 17:08:49.489940
╚══════════════════════════════════════════════════════════════════════════════╝
2025-Jan-22 17:08:49.492571
Saved output to:
2025-Jan-22 17:08:49.492571
  /artifacts/kok8gc8w8oow08gkgcsosw0c
2025-Jan-22 17:08:49.797770
docker exec kok8gc8w8oow08gkgcsosw0c bash -c 'cat /artifacts/build.sh'
2025-Jan-22 17:08:49.797770
docker build --add-host coolify:172.18.0.16 --add-host coolify-db:172.18.0.13 --add-host coolify-realtime:172.18.0.8 --add-host coolify-redis:172.18.0.6 --add-host imgproxy-w8gsw80s0ok0ogco88oswww8:172.18.0.19 --add-host ios0kks80c0oswgkw8cw8wwk:172.18.0.9 --add-host phpmyadmin-as4g4swkso8c4c84ss44cc40:172.18.0.7 --add-host realtime-dev-w8gsw80s0ok0ogco88oswww8:172.18.0.15 --add-host supabase-analytics-w8gsw80s0ok0ogco88oswww8:172.18.0.10 --add-host supabase-auth-w8gsw80s0ok0ogco88oswww8:172.18.0.14 --add-host supabase-db-w8gsw80s0ok0ogco88oswww8:172.18.0.5 --add-host supabase-edge-functions-w8gsw80s0ok0ogco88oswww8:172.18.0.22 --add-host supabase-kong-w8gsw80s0ok0ogco88oswww8:172.18.0.2 --add-host supabase-meta-w8gsw80s0ok0ogco88oswww8:172.18.0.20 --add-host supabase-minio-w8gsw80s0ok0ogco88oswww8:172.18.0.17 --add-host supabase-rest-w8gsw80s0ok0ogco88oswww8:172.18.0.12 --add-host supabase-storage-w8gsw80s0ok0ogco88oswww8:172.18.0.18 --add-host supabase-studio-w8gsw80s0ok0ogco88oswww8:172.18.0.4 --add-host supabase-supavisor-w8gsw80s0ok0ogco88oswww8:172.18.0.23 --add-host supabase-vector-w8gsw80s0ok0ogco88oswww8:172.18.0.11 --add-host vksk08o:172.18.0.3 --network host -f /artifacts/kok8gc8w8oow08gkgcsosw0c/.nixpacks/Dockerfile --build-arg CI='true' --build-arg NIXPACKS_METADATA='node' --build-arg NIXPACKS_NODE_VERSION='22' --build-arg NIXPACKS_SPA_OUTPUT_DIR='dist' --build-arg NODE_ENV='production' --build-arg NPM_CONFIG_PRODUCTION='false' --build-arg SOURCE_COMMIT='9b879ae67008b6b764d40c4d3607c4c05499194a' --build-arg 'COOLIFY_URL=http://zsccwc80ko44gg0oww8oo0cs.23.88.72.189.sslip.io'/ --build-arg 'COOLIFY_FQDN=zsccwc80ko44gg0oww8oo0cs.23.88.72.189.sslip.io' --build-arg 'COOLIFY_BRANCH="main"' --build-arg 'COOLIFY_CONTAINER_NAME="zsccwc80ko44gg0oww8oo0cs-170844298203"' --progress plain -t zsccwc80ko44gg0oww8oo0cs:9b879ae67008b6b764d40c4d3607c4c05499194a /artifacts/kok8gc8w8oow08gkgcsosw0c
2025-Jan-22 17:08:50.188629
docker exec kok8gc8w8oow08gkgcsosw0c bash -c 'bash /artifacts/build.sh'
2025-Jan-22 17:08:50.188629
#0 building with "default" instance using docker driver
2025-Jan-22 17:08:50.188629
2025-Jan-22 17:08:50.188629
#1 [internal] load build definition from Dockerfile
2025-Jan-22 17:08:50.188629
#1 transferring dockerfile: 2.19kB done
2025-Jan-22 17:08:50.188629
#1 DONE 0.0s
2025-Jan-22 17:08:50.188629
2025-Jan-22 17:08:50.188629
#2 [auth] railwayapp/nixpacks:pull token for ghcr.io
2025-Jan-22 17:08:50.339484
#2 DONE 0.0s
2025-Jan-22 17:08:50.339484
2025-Jan-22 17:08:50.339484
#3 [internal] load metadata for ghcr.io/railwayapp/nixpacks:ubuntu-1736208272
2025-Jan-22 17:08:51.536532
#3 DONE 1.5s
2025-Jan-22 17:08:51.658549
#4 [internal] load .dockerignore
2025-Jan-22 17:08:51.658549
#4 transferring context: 2B done
2025-Jan-22 17:08:51.658549
#4 DONE 0.0s
2025-Jan-22 17:08:51.658549
2025-Jan-22 17:08:51.658549
#5 [stage-0  1/19] FROM ghcr.io/railwayapp/nixpacks:ubuntu-1736208272@sha256:373a5b6b1b703c1b8cb6e5bf9c0147a22b54f0497265fd108c303aaf4032b6c9
2025-Jan-22 17:08:51.658549
#5 DONE 0.0s
2025-Jan-22 17:08:51.658549
2025-Jan-22 17:08:51.658549
#6 [internal] load build context
2025-Jan-22 17:08:51.658549
#6 transferring context: 336.00kB 0.0s done
2025-Jan-22 17:08:51.658549
#6 DONE 0.0s
2025-Jan-22 17:08:51.658549
2025-Jan-22 17:08:51.658549
#7 [stage-0  2/19] WORKDIR /app/
2025-Jan-22 17:08:51.658549
#7 CACHED
2025-Jan-22 17:08:51.658549
2025-Jan-22 17:08:51.658549
#8 [stage-0  3/19] COPY .nixpacks/nixpkgs-5624e1334b26ddc18da37e132b6fa8e93b481468.nix .nixpacks/nixpkgs-5624e1334b26ddc18da37e132b6fa8e93b481468.nix
2025-Jan-22 17:08:51.658549
#8 DONE 0.0s
2025-Jan-22 17:08:51.658549
2025-Jan-22 17:08:51.658549
#9 [stage-0  4/19] RUN nix-env -if .nixpacks/nixpkgs-5624e1334b26ddc18da37e132b6fa8e93b481468.nix && nix-collect-garbage -d
2025-Jan-22 17:08:51.658549
#9 0.075 unpacking 'https://github.com/NixOS/nixpkgs/archive/5624e1334b26ddc18da37e132b6fa8e93b481468.tar.gz' into the Git cache...
2025-Jan-22 17:09:12.949019
#9 21.37 unpacking 'https://github.com/railwayapp/nix-npm-overlay/archive/main.tar.gz' into the Git cache...
2025-Jan-22 17:09:13.431688
#9 21.85 installing '5624e1334b26ddc18da37e132b6fa8e93b481468-env'
2025-Jan-22 17:09:14.019587
#9 22.44 these 6 derivations will be built:
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/9v4q989ih2js7qfblsv76fchjsb2plyb-pnpm-9.15.4.tgz.drv
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/a4gznd4hdxjvqvwgxjkmpwjksvyz8snl-pnpm.drv
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/dbsjnp7flb3yqkrvciphwy36i5s0v2z9-libraries.drv
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/j3h0nqv8lq8b6a5pbshhbqc85vcqzh1b-builder.pl.drv
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/kd5m717nwlrchwz7fbh9xbs7b13k68as-5624e1334b26ddc18da37e132b6fa8e93b481468-env.drv
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/rc598vjiidr0z005fyzz3k95z60nkspx-5624e1334b26ddc18da37e132b6fa8e93b481468-env.drv
2025-Jan-22 17:09:14.250729
#9 22.44 these 74 paths will be fetched (115.47 MiB download, 548.90 MiB unpacked):
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/5z4ghjjxyg0r33w0hfr4crhlz6fqfzd2-acl-2.3.2
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/vzh3vvwcj1pma09dgial605zkb0qh7gl-attr-2.5.2
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/0irlcqx2n3qm6b1pc9rsd2i8qpvcccaj-bash-5.2p37
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/va7kw1i822h95im4jacci19v0cqajfyf-binutils-2.43.1
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/mkgxzw8bdg0974njrhq29kgwmgk35wid-binutils-2.43.1-lib
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/9bacph866qhmr2zfib1h49jixq5hhd01-binutils-wrapper-2.43.1
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/g242a6wyvc429wlwp59iqyhpnjfcrkw3-bzip2-1.0.8
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/y59bxw99pbld247dznzv352cqdhlybqi-bzip2-1.0.8-bin
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/k48bha2fjqzarg52picsdfwlqx75aqbb-coreutils-9.5
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/g1i5arx1bf47afqzndha6cq06p5mk8zs-curl-8.11.0
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/cwlma6a91y8ahwdfhawv713xlcaj8knq-curl-8.11.0-bin
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/60ajyv1yyacwm3qd3gzsvqsc70fl0qbi-curl-8.11.0-dev
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/rqw148nha96b10b49ikvk170dd1zv7c9-curl-8.11.0-man
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/xrpvl6c1pyq7zazqnb41kgshmkr85da1-diffutils-3.10
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/w2fx8gszssrk60wswq22898lgq3jga7j-ed-1.20.2
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/swvs52wx5a5j9mv91mingbak5pn4h1i0-expand-response-params
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/83jpg0nha0gp1pggdvsk7zh6wn5lgm00-file-5.45
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/lfhmpajzgfmgl8xrdvp2r9hdi2rf17wy-findutils-4.10.0
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/45jb5s18799g8day8zjixrvknj4chp6r-gawk-5.3.1
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/xzfmarrq8x8s4ivpya24rrndqsq2ndiz-gcc-13.3.0
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/97f3gw9vpyxvwjv2i673isvg92q65mwn-gcc-13.3.0-lib
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/nhdjqagplar2fdrqnrxlab8vg9i36b3d-gcc-13.3.0-libgcc
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/3ix5h74n7ar9950vwzp4dxmil70pmx0k-gcc-wrapper-13.3.0
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/pacbfvpzqz2mksby36awvbcn051zcji3-glibc-2.40-36
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/26dy2y29fhissya64ygahwpidpvs3bm3-glibc-2.40-36-bin
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/aax0hx68i2ikhpf27hdm6a2a209d4s6p-glibc-2.40-36-dev
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/617chz8a4p5kz09ij8s9ns05iafzbpcc-gmp-6.3.0
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/d6wqw30y25ib5dkbbdp16frb1la6125w-gmp-with-cxx-6.3.0
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/hi0n0389lgyjp7v95q7wmxrf3db448xp-gnu-config-2024-01-01
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/14aswfz6pm8zvyyy927xzmi8x4rnvlc8-gnugrep-3.11
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/a08385589ajv3ahmp81nml9bh5dsi55n-gnumake-4.4.1
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/gvivnz7rb2gz1vy7d9mdxgzj9didz7w2-gnused-4.9
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/sdljgkhcmlflr785i4jffg1rvm294i1k-gnutar-1.35
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/pg1n8f8zlwh4q4bsbnm9gwhx7cbix1m6-gzip-1.13
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/92l2hl30683sbnkkzp55jpmnpa58mr2c-icu4c-74.2
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/2c2x8ykbhnb36dqmiia2024fixfy2s24-icu4c-74.2-dev
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/zj93rq650fz6v25qw39sm025ya4k8plp-isl-0.20
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/rlmyizjw96rfpi544511lqbsdqdjsrcb-keyutils-1.6.3-lib
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/w7klmx6fwb59c4bxqigh5im8dhl6d2vm-krb5-1.21.3
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/bk53d5m6yf7rjmy1d55rqyg5jjjnc274-krb5-1.21.3-dev
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/3nzw2pkrlcpk6xxvhyqrys5w44hdibyq-krb5-1.21.3-lib
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/qwjjm4j652ck9izaid7bz63s4hd5bnha-libidn2-2.3.7
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/h82a48wb6i6g42fbpxl7z7s40pw93g0n-libmpc-1.3.1
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/92qwm670j8pc69zlh00a8anwzp9vbnly-libssh2-1.11.1
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/r30bmsd7kdr41jkf66czbxg20g8dknxm-libssh2-1.11.1-dev
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/6pqgj71r0850b0cd95yxx0d52zax016i-libunistring-1.2
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/p9rzfyn249qip445ja9xb8grg88jp5br-libuv-1.48.0
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/h61d1hiisxv8idvi83vrsf1bwrp1s27c-libuv-1.48.0-dev
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/w47qirkm40jxlwndipwavi1mgg78d6y3-libxcrypt-4.4.36
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/dvsai0ym9czjl5mcsarcdwccb70615n4-linux-headers-6.10
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/axqdpl7j6r6anryybydsd3yh480y8n37-mirrors-list
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/93ph6f74wihfir4vyz2sj88d2vn2vq7y-mpfr-4.2.1
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/5a7m0ynmh2nr2lsrqrm1950d3ny6vlb9-nghttp2-1.64.0
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/vqld4bya4knczypll3cyd4773vimrwvq-nghttp2-1.64.0-dev
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/cfwmwn2hby7hkcdf6nlp84jvfp9wqljm-nghttp2-1.64.0-lib
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/0xvgzkl74v6jrh79ibh7ss770dh4hb69-nodejs-22.10.0
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/5dlhinba4wbr5ijy0vcmyzh4i678z94w-openssl-3.3.2
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/v8kbb06m2yhxhh7pz9df3my7zpmb9d7a-openssl-3.3.2
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/40yym8srkji787nrml52v4v160z41v65-openssl-3.3.2-bin
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/hps9lzd2if5gfd3rcn428ywrn3v6rnvz-openssl-3.3.2-bin
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/4r4ig3y8xm9zwvra4m3kimn133m24dnv-openssl-3.3.2-dev
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/n75w5ph97jrsnc3nh9bxamdynjb1pyzb-openssl-3.3.2-dev
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/0knrdpnzi5s4igcvzw8yhkj8daq84a2v-patch-2.7.6
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/xjlvb8x7z3f5rxxswa3c6ghay74a58jm-patchelf-0.15.0
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/xs9jwc3if4dp77ga0q9cjcspwp7r9yvf-pcre2-10.44
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/3vq9qasxlqpyq1k95nq3s13g2m6w59ay-perl-5.40.0
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/gw0swsnbfk9l8d1il70psm8b3r5m33jv-stdenv-linux
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/z50gnrdklgq4sfq59z2sw80mbnr9nrk3-stdenv-linux
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/sjdccq7ywcpfjnmisl0ah60b7rg1cjpf-update-autotools-gnu-config-scripts-hook
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/2d5spnl8j5r4n1s4bj1zmra7mwx0f1n8-xgcc-13.3.0-libgcc
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/mmbcivd56qqijk877x2i5ra55sbbcmrl-xz-5.6.3
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/g6rf9zyrz8hrgz4r7sd2hab3j1afxdkr-xz-5.6.3-bin
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/y6bcc1vzg315zzzpir608zkhnmvp49kc-zlib-1.3.1
2025-Jan-22 17:09:14.250729
#9 22.44   /nix/store/h0j60865g7m591zqw6bl1pjq33x4l9m9-zlib-1.3.1-dev
2025-Jan-22 17:09:14.250729
#9 22.45 copying path '/nix/store/nhdjqagplar2fdrqnrxlab8vg9i36b3d-gcc-13.3.0-libgcc' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.250729
#9 22.45 copying path '/nix/store/hi0n0389lgyjp7v95q7wmxrf3db448xp-gnu-config-2024-01-01' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.250729
#9 22.45 copying path '/nix/store/2d5spnl8j5r4n1s4bj1zmra7mwx0f1n8-xgcc-13.3.0-libgcc' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.250729
#9 22.45 copying path '/nix/store/6pqgj71r0850b0cd95yxx0d52zax016i-libunistring-1.2' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.250729
#9 22.46 copying path '/nix/store/dvsai0ym9czjl5mcsarcdwccb70615n4-linux-headers-6.10' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.250729
#9 22.46 copying path '/nix/store/axqdpl7j6r6anryybydsd3yh480y8n37-mirrors-list' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.250729
#9 22.46 copying path '/nix/store/rqw148nha96b10b49ikvk170dd1zv7c9-curl-8.11.0-man' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.250729
#9 22.46 copying path '/nix/store/5a7m0ynmh2nr2lsrqrm1950d3ny6vlb9-nghttp2-1.64.0' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.250729
#9 22.46 copying path '/nix/store/sjdccq7ywcpfjnmisl0ah60b7rg1cjpf-update-autotools-gnu-config-scripts-hook' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.254163
#9 22.50 copying path '/nix/store/qwjjm4j652ck9izaid7bz63s4hd5bnha-libidn2-2.3.7' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.254163
#9 22.52 copying path '/nix/store/pacbfvpzqz2mksby36awvbcn051zcji3-glibc-2.40-36' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.516357
#9 22.93 copying path '/nix/store/vzh3vvwcj1pma09dgial605zkb0qh7gl-attr-2.5.2' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.516357
#9 22.93 copying path '/nix/store/0irlcqx2n3qm6b1pc9rsd2i8qpvcccaj-bash-5.2p37' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.516357
#9 22.93 copying path '/nix/store/w2fx8gszssrk60wswq22898lgq3jga7j-ed-1.20.2' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.516357
#9 22.93 copying path '/nix/store/swvs52wx5a5j9mv91mingbak5pn4h1i0-expand-response-params' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.93 copying path '/nix/store/g242a6wyvc429wlwp59iqyhpnjfcrkw3-bzip2-1.0.8' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.93 copying path '/nix/store/45jb5s18799g8day8zjixrvknj4chp6r-gawk-5.3.1' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.93 copying path '/nix/store/26dy2y29fhissya64ygahwpidpvs3bm3-glibc-2.40-36-bin' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.93 copying path '/nix/store/97f3gw9vpyxvwjv2i673isvg92q65mwn-gcc-13.3.0-lib' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.93 copying path '/nix/store/617chz8a4p5kz09ij8s9ns05iafzbpcc-gmp-6.3.0' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.93 copying path '/nix/store/a08385589ajv3ahmp81nml9bh5dsi55n-gnumake-4.4.1' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.93 copying path '/nix/store/rlmyizjw96rfpi544511lqbsdqdjsrcb-keyutils-1.6.3-lib' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.93 copying path '/nix/store/w47qirkm40jxlwndipwavi1mgg78d6y3-libxcrypt-4.4.36' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.93 copying path '/nix/store/gvivnz7rb2gz1vy7d9mdxgzj9didz7w2-gnused-4.9' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.93 copying path '/nix/store/cfwmwn2hby7hkcdf6nlp84jvfp9wqljm-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.93 copying path '/nix/store/p9rzfyn249qip445ja9xb8grg88jp5br-libuv-1.48.0' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.95 copying path '/nix/store/5dlhinba4wbr5ijy0vcmyzh4i678z94w-openssl-3.3.2' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.95 copying path '/nix/store/v8kbb06m2yhxhh7pz9df3my7zpmb9d7a-openssl-3.3.2' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.95 copying path '/nix/store/xs9jwc3if4dp77ga0q9cjcspwp7r9yvf-pcre2-10.44' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.95 copying path '/nix/store/mmbcivd56qqijk877x2i5ra55sbbcmrl-xz-5.6.3' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.95 copying path '/nix/store/y6bcc1vzg315zzzpir608zkhnmvp49kc-zlib-1.3.1' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.97 copying path '/nix/store/5z4ghjjxyg0r33w0hfr4crhlz6fqfzd2-acl-2.3.2' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.98 copying path '/nix/store/y59bxw99pbld247dznzv352cqdhlybqi-bzip2-1.0.8-bin' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.98 copying path '/nix/store/0knrdpnzi5s4igcvzw8yhkj8daq84a2v-patch-2.7.6' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.98 copying path '/nix/store/mkgxzw8bdg0974njrhq29kgwmgk35wid-binutils-2.43.1-lib' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.98 copying path '/nix/store/83jpg0nha0gp1pggdvsk7zh6wn5lgm00-file-5.45' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.622923
#9 22.98 copying path '/nix/store/h61d1hiisxv8idvi83vrsf1bwrp1s27c-libuv-1.48.0-dev' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.625814
#9 22.99 copying path '/nix/store/aax0hx68i2ikhpf27hdm6a2a209d4s6p-glibc-2.40-36-dev' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.625814
#9 22.99 copying path '/nix/store/vqld4bya4knczypll3cyd4773vimrwvq-nghttp2-1.64.0-dev' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.625814
#9 22.99 copying path '/nix/store/sdljgkhcmlflr785i4jffg1rvm294i1k-gnutar-1.35' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.625814
#9 23.00 copying path '/nix/store/g6rf9zyrz8hrgz4r7sd2hab3j1afxdkr-xz-5.6.3-bin' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.625814
#9 23.00 copying path '/nix/store/h0j60865g7m591zqw6bl1pjq33x4l9m9-zlib-1.3.1-dev' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.625814
#9 23.00 copying path '/nix/store/zj93rq650fz6v25qw39sm025ya4k8plp-isl-0.20' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.625814
#9 23.01 copying path '/nix/store/93ph6f74wihfir4vyz2sj88d2vn2vq7y-mpfr-4.2.1' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.625814
#9 23.02 copying path '/nix/store/pg1n8f8zlwh4q4bsbnm9gwhx7cbix1m6-gzip-1.13' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.625814
#9 23.02 copying path '/nix/store/14aswfz6pm8zvyyy927xzmi8x4rnvlc8-gnugrep-3.11' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.625814
#9 23.04 copying path '/nix/store/h82a48wb6i6g42fbpxl7z7s40pw93g0n-libmpc-1.3.1' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.723420
#9 23.05 copying path '/nix/store/va7kw1i822h95im4jacci19v0cqajfyf-binutils-2.43.1' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.723420
#9 23.05 copying path '/nix/store/d6wqw30y25ib5dkbbdp16frb1la6125w-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.723420
#9 23.05 copying path '/nix/store/92l2hl30683sbnkkzp55jpmnpa58mr2c-icu4c-74.2' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.723420
#9 23.05 copying path '/nix/store/xjlvb8x7z3f5rxxswa3c6ghay74a58jm-patchelf-0.15.0' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.723420
#9 23.07 copying path '/nix/store/xzfmarrq8x8s4ivpya24rrndqsq2ndiz-gcc-13.3.0' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.723420
#9 23.08 copying path '/nix/store/k48bha2fjqzarg52picsdfwlqx75aqbb-coreutils-9.5' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.723420
#9 23.10 copying path '/nix/store/3nzw2pkrlcpk6xxvhyqrys5w44hdibyq-krb5-1.21.3-lib' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.723420
#9 23.10 copying path '/nix/store/hps9lzd2if5gfd3rcn428ywrn3v6rnvz-openssl-3.3.2-bin' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.723420
#9 23.10 copying path '/nix/store/92qwm670j8pc69zlh00a8anwzp9vbnly-libssh2-1.11.1' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.723420
#9 23.11 copying path '/nix/store/40yym8srkji787nrml52v4v160z41v65-openssl-3.3.2-bin' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.723420
#9 23.14 copying path '/nix/store/xrpvl6c1pyq7zazqnb41kgshmkr85da1-diffutils-3.10' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.723420
#9 23.14 copying path '/nix/store/lfhmpajzgfmgl8xrdvp2r9hdi2rf17wy-findutils-4.10.0' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.862710
#9 23.14 copying path '/nix/store/3vq9qasxlqpyq1k95nq3s13g2m6w59ay-perl-5.40.0' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.862710
#9 23.15 copying path '/nix/store/n75w5ph97jrsnc3nh9bxamdynjb1pyzb-openssl-3.3.2-dev' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.862710
#9 23.16 copying path '/nix/store/4r4ig3y8xm9zwvra4m3kimn133m24dnv-openssl-3.3.2-dev' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.862710
#9 23.18 copying path '/nix/store/g1i5arx1bf47afqzndha6cq06p5mk8zs-curl-8.11.0' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.862710
#9 23.18 copying path '/nix/store/w7klmx6fwb59c4bxqigh5im8dhl6d2vm-krb5-1.21.3' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.862710
#9 23.20 copying path '/nix/store/z50gnrdklgq4sfq59z2sw80mbnr9nrk3-stdenv-linux' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.862710
#9 23.21 copying path '/nix/store/r30bmsd7kdr41jkf66czbxg20g8dknxm-libssh2-1.11.1-dev' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.862710
#9 23.28 building '/nix/store/j3h0nqv8lq8b6a5pbshhbqc85vcqzh1b-builder.pl.drv'...
2025-Jan-22 17:09:14.999567
#9 23.28 copying path '/nix/store/cwlma6a91y8ahwdfhawv713xlcaj8knq-curl-8.11.0-bin' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.999567
#9 23.29 copying path '/nix/store/bk53d5m6yf7rjmy1d55rqyg5jjjnc274-krb5-1.21.3-dev' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.999567
#9 23.33 copying path '/nix/store/60ajyv1yyacwm3qd3gzsvqsc70fl0qbi-curl-8.11.0-dev' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:14.999567
#9 23.42 building '/nix/store/dbsjnp7flb3yqkrvciphwy36i5s0v2z9-libraries.drv'...
2025-Jan-22 17:09:15.186129
#9 23.46 copying path '/nix/store/9bacph866qhmr2zfib1h49jixq5hhd01-binutils-wrapper-2.43.1' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:15.186129
#9 23.60 building '/nix/store/9v4q989ih2js7qfblsv76fchjsb2plyb-pnpm-9.15.4.tgz.drv'...
2025-Jan-22 17:09:15.347098
#9 23.76 copying path '/nix/store/2c2x8ykbhnb36dqmiia2024fixfy2s24-icu4c-74.2-dev' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:15.544985
#9 23.77 
2025-Jan-22 17:09:15.544985
#9 23.77 trying https://registry.npmjs.org/pnpm/-/pnpm-9.15.4.tgz
2025-Jan-22 17:09:15.544985
#9 23.78   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
2025-Jan-22 17:09:15.544985
#9 23.78                                  Dload  Upload   Total   Spent    Left  Speed
2025-Jan-22 17:09:15.544985
#9 23.85 copying path '/nix/store/0xvgzkl74v6jrh79ibh7ss770dh4hb69-nodejs-22.10.0' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:15.544985
#9 23.96 100 3746k  100 3746k    0     0  19.7M      0 --:--:-- --:--:-- --:--:-- 19.7M
2025-Jan-22 17:09:15.663883
#9 24.08 building '/nix/store/kd5m717nwlrchwz7fbh9xbs7b13k68as-5624e1334b26ddc18da37e132b6fa8e93b481468-env.drv'...
2025-Jan-22 17:09:17.582110
#9 26.00 copying path '/nix/store/3ix5h74n7ar9950vwzp4dxmil70pmx0k-gcc-wrapper-13.3.0' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:17.718017
#9 26.01 copying path '/nix/store/gw0swsnbfk9l8d1il70psm8b3r5m33jv-stdenv-linux' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:17.718017
#9 26.08 building '/nix/store/a4gznd4hdxjvqvwgxjkmpwjksvyz8snl-pnpm.drv'...
2025-Jan-22 17:09:17.718017
#9 26.13 Running phase: unpackPhase
2025-Jan-22 17:09:17.828815
#9 26.14 unpacking source archive /nix/store/36f4jzsrg63408ccik4ajzyzk2bkhzck-pnpm-9.15.4.tgz
2025-Jan-22 17:09:17.828815
#9 26.25 source root is package
2025-Jan-22 17:09:18.011242
#9 26.27 setting SOURCE_DATE_EPOCH to timestamp 499162500 of file package/package.json
2025-Jan-22 17:09:18.011242
#9 26.28 Running phase: installPhase
2025-Jan-22 17:09:18.180590
#9 26.60 building '/nix/store/rc598vjiidr0z005fyzz3k95z60nkspx-5624e1334b26ddc18da37e132b6fa8e93b481468-env.drv'...
2025-Jan-22 17:09:18.314787
#9 26.66 created 14 symlinks in user environment
2025-Jan-22 17:09:18.314787
#9 26.73 building '/nix/store/5phqrlx7d3hkfb0nvsrksf1jzjfydn87-user-environment.drv'...
2025-Jan-22 17:09:18.495617
#9 26.91 removing old generations of profile /nix/var/nix/profiles/per-user/root/profile
2025-Jan-22 17:09:18.606868
#9 26.91 removing profile version 1
2025-Jan-22 17:09:18.606868
#9 26.91 removing old generations of profile /nix/var/nix/profiles/per-user/root/channels
2025-Jan-22 17:09:18.606868
#9 26.91 removing old generations of profile /nix/var/nix/profiles/per-user/root/profile
2025-Jan-22 17:09:18.606868
#9 26.91 removing old generations of profile /nix/var/nix/profiles/per-user/root/channels
2025-Jan-22 17:09:18.606868
#9 26.91 finding garbage collector roots...
2025-Jan-22 17:09:18.606868
#9 26.91 removing stale link from '/nix/var/nix/gcroots/auto/lzjbmb2ry0z7lma2fvpqprb12921pnb5' to '/nix/var/nix/profiles/per-user/root/profile-1-link'
2025-Jan-22 17:09:18.606868
#9 26.92 deleting garbage...
2025-Jan-22 17:09:18.606868
#9 26.92 deleting '/nix/store/kbi7ymc6vw1vywbwjr54qyl5v14bas06-user-environment.drv'
2025-Jan-22 17:09:18.606868
#9 26.92 deleting '/nix/store/ayzl87548phddb2ncsa45xbdkih6g01z-user-environment'
2025-Jan-22 17:09:18.606868
#9 26.92 deleting '/nix/store/mc33w54lmmlf4x8vclqrr5q5gcqw40ah-env-manifest.nix'
2025-Jan-22 17:09:18.606868
#9 26.94 deleting '/nix/store/60ajyv1yyacwm3qd3gzsvqsc70fl0qbi-curl-8.11.0-dev'
2025-Jan-22 17:09:18.606868
#9 26.94 deleting '/nix/store/rqw148nha96b10b49ikvk170dd1zv7c9-curl-8.11.0-man'
2025-Jan-22 17:09:18.606868
#9 26.94 deleting '/nix/store/gw0swsnbfk9l8d1il70psm8b3r5m33jv-stdenv-linux'
2025-Jan-22 17:09:18.606868
#9 26.94 deleting '/nix/store/3ix5h74n7ar9950vwzp4dxmil70pmx0k-gcc-wrapper-13.3.0'
2025-Jan-22 17:09:18.606868
#9 26.94 deleting '/nix/store/xzfmarrq8x8s4ivpya24rrndqsq2ndiz-gcc-13.3.0'
2025-Jan-22 17:09:18.606868
#9 27.02 deleting '/nix/store/h82a48wb6i6g42fbpxl7z7s40pw93g0n-libmpc-1.3.1'
2025-Jan-22 17:09:18.707451
#9 27.02 deleting '/nix/store/93ph6f74wihfir4vyz2sj88d2vn2vq7y-mpfr-4.2.1'
2025-Jan-22 17:09:18.707451
#9 27.02 deleting '/nix/store/vqld4bya4knczypll3cyd4773vimrwvq-nghttp2-1.64.0-dev'
2025-Jan-22 17:09:18.707451
#9 27.02 deleting '/nix/store/5a7m0ynmh2nr2lsrqrm1950d3ny6vlb9-nghttp2-1.64.0'
2025-Jan-22 17:09:18.707451
#9 27.02 deleting '/nix/store/cwlma6a91y8ahwdfhawv713xlcaj8knq-curl-8.11.0-bin'
2025-Jan-22 17:09:18.707451
#9 27.02 deleting '/nix/store/g1i5arx1bf47afqzndha6cq06p5mk8zs-curl-8.11.0'
2025-Jan-22 17:09:18.707451
#9 27.03 deleting '/nix/store/cfwmwn2hby7hkcdf6nlp84jvfp9wqljm-nghttp2-1.64.0-lib'
2025-Jan-22 17:09:18.707451
#9 27.03 deleting '/nix/store/9bacph866qhmr2zfib1h49jixq5hhd01-binutils-wrapper-2.43.1'
2025-Jan-22 17:09:18.707451
#9 27.03 deleting '/nix/store/aax0hx68i2ikhpf27hdm6a2a209d4s6p-glibc-2.40-36-dev'
2025-Jan-22 17:09:18.707451
#9 27.04 deleting '/nix/store/26dy2y29fhissya64ygahwpidpvs3bm3-glibc-2.40-36-bin'
2025-Jan-22 17:09:18.707451
#9 27.04 deleting '/nix/store/z50gnrdklgq4sfq59z2sw80mbnr9nrk3-stdenv-linux'
2025-Jan-22 17:09:18.707451
#9 27.04 deleting '/nix/store/14aswfz6pm8zvyyy927xzmi8x4rnvlc8-gnugrep-3.11'
2025-Jan-22 17:09:18.707451
#9 27.05 deleting '/nix/store/xs9jwc3if4dp77ga0q9cjcspwp7r9yvf-pcre2-10.44'
2025-Jan-22 17:09:18.707451
#9 27.05 deleting '/nix/store/0knrdpnzi5s4igcvzw8yhkj8daq84a2v-patch-2.7.6'
2025-Jan-22 17:09:18.707451
#9 27.05 deleting '/nix/store/w2fx8gszssrk60wswq22898lgq3jga7j-ed-1.20.2'
2025-Jan-22 17:09:18.707451
#9 27.05 deleting '/nix/store/fzr4ghsc88j0wf4h9l87ddph1vqj8xp9-builder.pl'
2025-Jan-22 17:09:18.707451
#9 27.05 deleting '/nix/store/bk53d5m6yf7rjmy1d55rqyg5jjjnc274-krb5-1.21.3-dev'
2025-Jan-22 17:09:18.707451
#9 27.05 deleting '/nix/store/va7kw1i822h95im4jacci19v0cqajfyf-binutils-2.43.1'
2025-Jan-22 17:09:18.707451
#9 27.06 deleting '/nix/store/w7klmx6fwb59c4bxqigh5im8dhl6d2vm-krb5-1.21.3'
2025-Jan-22 17:09:18.707451
#9 27.07 deleting '/nix/store/sdljgkhcmlflr785i4jffg1rvm294i1k-gnutar-1.35'
2025-Jan-22 17:09:18.707451
#9 27.07 deleting '/nix/store/gvivnz7rb2gz1vy7d9mdxgzj9didz7w2-gnused-4.9'
2025-Jan-22 17:09:18.707451
#9 27.08 deleting '/nix/store/3nzw2pkrlcpk6xxvhyqrys5w44hdibyq-krb5-1.21.3-lib'
2025-Jan-22 17:09:18.707451
#9 27.08 deleting '/nix/store/rlmyizjw96rfpi544511lqbsdqdjsrcb-keyutils-1.6.3-lib'
2025-Jan-22 17:09:18.707451
#9 27.08 deleting '/nix/store/swvs52wx5a5j9mv91mingbak5pn4h1i0-expand-response-params'
2025-Jan-22 17:09:18.707451
#9 27.08 deleting '/nix/store/83jpg0nha0gp1pggdvsk7zh6wn5lgm00-file-5.45'
2025-Jan-22 17:09:18.707451
#9 27.08 deleting '/nix/store/xrpvl6c1pyq7zazqnb41kgshmkr85da1-diffutils-3.10'
2025-Jan-22 17:09:18.707451
#9 27.09 deleting '/nix/store/mkgxzw8bdg0974njrhq29kgwmgk35wid-binutils-2.43.1-lib'
2025-Jan-22 17:09:18.707451
#9 27.09 deleting '/nix/store/zj93rq650fz6v25qw39sm025ya4k8plp-isl-0.20'
2025-Jan-22 17:09:18.707451
#9 27.09 deleting '/nix/store/y59bxw99pbld247dznzv352cqdhlybqi-bzip2-1.0.8-bin'
2025-Jan-22 17:09:18.707451
#9 27.09 deleting '/nix/store/g242a6wyvc429wlwp59iqyhpnjfcrkw3-bzip2-1.0.8'
2025-Jan-22 17:09:18.707451
#9 27.09 deleting '/nix/store/sjdccq7ywcpfjnmisl0ah60b7rg1cjpf-update-autotools-gnu-config-scripts-hook'
2025-Jan-22 17:09:18.707451
#9 27.09 deleting '/nix/store/hi0n0389lgyjp7v95q7wmxrf3db448xp-gnu-config-2024-01-01'
2025-Jan-22 17:09:18.707451
#9 27.09 deleting '/nix/store/lfhmpajzgfmgl8xrdvp2r9hdi2rf17wy-findutils-4.10.0'
2025-Jan-22 17:09:18.707451
#9 27.10 deleting '/nix/store/565bp58jxzjvw24zvilq6z9k93l0kysr-libraries'
2025-Jan-22 17:09:18.707451
#9 27.10 deleting '/nix/store/g6rf9zyrz8hrgz4r7sd2hab3j1afxdkr-xz-5.6.3-bin'
2025-Jan-22 17:09:18.707451
#9 27.10 deleting '/nix/store/dvsai0ym9czjl5mcsarcdwccb70615n4-linux-headers-6.10'
2025-Jan-22 17:09:18.707451
#9 27.12 deleting '/nix/store/xjlvb8x7z3f5rxxswa3c6ghay74a58jm-patchelf-0.15.0'
2025-Jan-22 17:09:18.707451
#9 27.12 deleting '/nix/store/617chz8a4p5kz09ij8s9ns05iafzbpcc-gmp-6.3.0'
2025-Jan-22 17:09:18.707451
#9 27.12 deleting '/nix/store/r30bmsd7kdr41jkf66czbxg20g8dknxm-libssh2-1.11.1-dev'
2025-Jan-22 17:09:18.707451
#9 27.12 deleting '/nix/store/n75w5ph97jrsnc3nh9bxamdynjb1pyzb-openssl-3.3.2-dev'
2025-Jan-22 17:09:18.861869
#9 27.13 deleting '/nix/store/6sbyrjihs3a2xyc9rm0hjrj2ks90yr09-source'
2025-Jan-22 17:09:21.011943
#9 29.43 deleting '/nix/store/45jb5s18799g8day8zjixrvknj4chp6r-gawk-5.3.1'
2025-Jan-22 17:09:21.146354
#9 29.43 deleting '/nix/store/92qwm670j8pc69zlh00a8anwzp9vbnly-libssh2-1.11.1'
2025-Jan-22 17:09:21.146354
#9 29.43 deleting '/nix/store/pg1n8f8zlwh4q4bsbnm9gwhx7cbix1m6-gzip-1.13'
2025-Jan-22 17:09:21.146354
#9 29.43 deleting '/nix/store/36f4jzsrg63408ccik4ajzyzk2bkhzck-pnpm-9.15.4.tgz'
2025-Jan-22 17:09:21.146354
#9 29.43 deleting '/nix/store/a08385589ajv3ahmp81nml9bh5dsi55n-gnumake-4.4.1'
2025-Jan-22 17:09:21.146354
#9 29.44 deleting '/nix/store/3vq9qasxlqpyq1k95nq3s13g2m6w59ay-perl-5.40.0'
2025-Jan-22 17:09:21.146354
#9 29.50 deleting '/nix/store/axqdpl7j6r6anryybydsd3yh480y8n37-mirrors-list'
2025-Jan-22 17:09:21.146354
#9 29.50 deleting '/nix/store/mmbcivd56qqijk877x2i5ra55sbbcmrl-xz-5.6.3'
2025-Jan-22 17:09:21.146354
#9 29.51 deleting '/nix/store/hps9lzd2if5gfd3rcn428ywrn3v6rnvz-openssl-3.3.2-bin'
2025-Jan-22 17:09:21.146354
#9 29.51 deleting '/nix/store/v8kbb06m2yhxhh7pz9df3my7zpmb9d7a-openssl-3.3.2'
2025-Jan-22 17:09:21.146354
#9 29.51 deleting '/nix/store/vlrcaxn6y3hpwyc57r714j3bq5z30p6a-source'
2025-Jan-22 17:09:21.146354
#9 29.51 deleting '/nix/store/w47qirkm40jxlwndipwavi1mgg78d6y3-libxcrypt-4.4.36'
2025-Jan-22 17:09:21.146354
#9 29.51 deleting unused links...
2025-Jan-22 17:09:21.146354
#9 29.51 note: currently hard linking saves -0.00 MiB
2025-Jan-22 17:09:21.146354
#9 29.56 61 store paths deleted, 538.86 MiB freed
2025-Jan-22 17:09:21.439210
#9 DONE 29.9s
2025-Jan-22 17:09:21.675554
#10 [stage-0  5/19] COPY .nixpacks/nixpkgs-ba913eda2df8eb72147259189d55932012df6301.nix .nixpacks/nixpkgs-ba913eda2df8eb72147259189d55932012df6301.nix
2025-Jan-22 17:09:21.675554
#10 DONE 0.0s
2025-Jan-22 17:09:21.675554
2025-Jan-22 17:09:21.675554
#11 [stage-0  6/19] RUN nix-env -if .nixpacks/nixpkgs-ba913eda2df8eb72147259189d55932012df6301.nix && nix-collect-garbage -d
2025-Jan-22 17:09:21.675554
#11 0.072 unpacking 'https://github.com/NixOS/nixpkgs/archive/ba913eda2df8eb72147259189d55932012df6301.tar.gz' into the Git cache...
2025-Jan-22 17:09:40.138897
#11 18.69 installing 'ba913eda2df8eb72147259189d55932012df6301-env'
2025-Jan-22 17:09:40.746273
#11 19.29 these 4 derivations will be built:
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/x9qrr2jb0d9d7gjg77imaric1nr9wl3s-libraries.drv
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/4vjgp6bh2gja20gkg167x66kgk10c24j-ba913eda2df8eb72147259189d55932012df6301-env.drv
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/hpybn12g5ny53hbyvrlvzdl3hpk392ql-builder.pl.drv
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/llvngay9gncvs8l6dw01c6wlbh35zzf0-ba913eda2df8eb72147259189d55932012df6301-env.drv
2025-Jan-22 17:09:40.746273
#11 19.29 these 38 paths will be fetched (32.50 MiB download, 164.56 MiB unpacked):
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/mjgi65m3hgzqqvqcix848gskkw5zzwi9-acl-2.3.2
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/5nk2ga7i2f030am4qpcdsd8qlk6i3z83-attr-2.5.2
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/306znyj77fv49kwnkpxmb0j2znqpa8bj-bash-5.2p26
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/xwcf1rw3ackqp2vxms9myf9jq2ny6ynv-bzip2-1.0.8
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/mxcq77rlan82dzpv3cgj0fh6qvv8ncil-bzip2-1.0.8-bin
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/1iz89fy5fi998g43z1m4j7s5f095di68-caddy-2.8.4
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/php4qidg2bxzmm79vpri025bqi0fa889-coreutils-9.5
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/i34mknsjgrfyy71k2h79gda0bvagzc2j-diffutils-3.10
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/1sffjkg6c6ff16fz5yr0pnz3j7vja42h-ed-1.20.2
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/xx7x1dwybpssfhq8yikvzz38bh3yrq97-file-5.45
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/jjcsr5gs4qanf7ln5c6wgcq4sn75a978-findutils-4.9.0
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/8vvkbgmnin1x2jkp7wcb2zg1p0vc4ks9-gawk-5.2.2
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/xvzz97yk73hw03v5dhhz3j47ggwf1yq1-gcc-13.2.0-lib
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/0rxb3ixzk4zaqivc9s795m0a3679wbw2-gcc-13.2.0-libgcc
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/k7zgvzp2r31zkg9xqgjim7mbknryv6bs-glibc-2.39-52
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/7ivacs3m2fm19hyxdmrs05xisj82v6y5-gmp-with-cxx-6.3.0
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/4i0j14zymvlngyyhq2254f4g9m9my98y-gnu-config-2024-01-01
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/28gpmx3z6ss3znd7fhmrzmvk3x5lnfbk-gnugrep-3.11
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/cdzpn0rdq810aknww3w9fy3wmw9ixr66-gnumake-4.4.1
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/5zjms21vpxlkbc0qyl5pmj2sidfmzmd7-gnused-4.9
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/rik7p68cq7yzlj5pmfpf4yv6jnrpvlgf-gnutar-1.35
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/j5chw7v1x3vlmf3wmdpdb5gwh9hl0b80-gzip-1.13
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/dzsby2vk02jcn0s43fkna2qqqix6ccy1-iana-etc-20240318
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/ic63ay0py10fyryaw7345k4ps32da33w-libidn2-2.3.7
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/yfp7dr8m7zi7kxk49wd714gwvhb105hf-libunistring-1.1
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/5xynf9c9ml7d97q70kpq9rpqqmx13xl8-libxcrypt-4.4.36
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/zk9ybjjixdwyv3jmpg2i7s8p7iqi5vhh-mailcap-2.1.53
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/0lfxbmchigx9vs9qmrlbahcy6nxwfnj1-patch-2.7.6
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/nbad47q0m0m9c5xid7zh05hiknwircbp-patchelf-0.15.0
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/g3vi60zgyjsvij7xkk6dxky1hkwh0ynd-pcre2-10.43
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/1iscdpbd3x9x3s3s25jd5ppl7yra0b77-perl-5.38.2
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/rg6agzlb4gcl4w2126m16qm4mgr8jgi6-stdenv-linux
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/y6hmqbmbwq0rmx1fzix5c5jszla2pzmp-tzdata-2024a
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/bq6xbl9cq6hkcn65mz2fzc2k38xiv87h-update-autotools-gnu-config-scripts-hook
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/1q9vc0lq7qjlfjz47mfmlzdf86c543jy-xgcc-13.2.0-libgcc
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/lphbn1va4i43fj7f3m9xskf9y86khzf3-xz-5.4.6
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/6i4xxaa812vsbli9jkq4mksdddrk27lw-xz-5.4.6-bin
2025-Jan-22 17:09:40.746273
#11 19.29   /nix/store/lv6nackqis28gg7l2ic43f6nk52hb39g-zlib-1.3.1
2025-Jan-22 17:09:40.977840
#11 19.30 copying path '/nix/store/dzsby2vk02jcn0s43fkna2qqqix6ccy1-iana-etc-20240318' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:40.977840
#11 19.31 copying path '/nix/store/zk9ybjjixdwyv3jmpg2i7s8p7iqi5vhh-mailcap-2.1.53' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:40.977840
#11 19.31 copying path '/nix/store/y6hmqbmbwq0rmx1fzix5c5jszla2pzmp-tzdata-2024a' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:40.977840
#11 19.31 copying path '/nix/store/4i0j14zymvlngyyhq2254f4g9m9my98y-gnu-config-2024-01-01' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:40.977840
#11 19.31 copying path '/nix/store/1q9vc0lq7qjlfjz47mfmlzdf86c543jy-xgcc-13.2.0-libgcc' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:40.977840
#11 19.31 copying path '/nix/store/0rxb3ixzk4zaqivc9s795m0a3679wbw2-gcc-13.2.0-libgcc' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:40.977840
#11 19.31 copying path '/nix/store/yfp7dr8m7zi7kxk49wd714gwvhb105hf-libunistring-1.1' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:40.977840
#11 19.32 copying path '/nix/store/bq6xbl9cq6hkcn65mz2fzc2k38xiv87h-update-autotools-gnu-config-scripts-hook' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:40.977840
#11 19.35 copying path '/nix/store/ic63ay0py10fyryaw7345k4ps32da33w-libidn2-2.3.7' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:40.977840
#11 19.37 copying path '/nix/store/k7zgvzp2r31zkg9xqgjim7mbknryv6bs-glibc-2.39-52' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.242041
#11 19.79 copying path '/nix/store/5nk2ga7i2f030am4qpcdsd8qlk6i3z83-attr-2.5.2' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.242041
#11 19.79 copying path '/nix/store/306znyj77fv49kwnkpxmb0j2znqpa8bj-bash-5.2p26' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.242041
#11 19.79 copying path '/nix/store/xwcf1rw3ackqp2vxms9myf9jq2ny6ynv-bzip2-1.0.8' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.79 copying path '/nix/store/1iz89fy5fi998g43z1m4j7s5f095di68-caddy-2.8.4' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.79 copying path '/nix/store/1sffjkg6c6ff16fz5yr0pnz3j7vja42h-ed-1.20.2' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.79 copying path '/nix/store/8vvkbgmnin1x2jkp7wcb2zg1p0vc4ks9-gawk-5.2.2' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.79 copying path '/nix/store/cdzpn0rdq810aknww3w9fy3wmw9ixr66-gnumake-4.4.1' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.79 copying path '/nix/store/xvzz97yk73hw03v5dhhz3j47ggwf1yq1-gcc-13.2.0-lib' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.79 copying path '/nix/store/5xynf9c9ml7d97q70kpq9rpqqmx13xl8-libxcrypt-4.4.36' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.79 copying path '/nix/store/g3vi60zgyjsvij7xkk6dxky1hkwh0ynd-pcre2-10.43' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.79 copying path '/nix/store/5zjms21vpxlkbc0qyl5pmj2sidfmzmd7-gnused-4.9' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.79 copying path '/nix/store/lv6nackqis28gg7l2ic43f6nk52hb39g-zlib-1.3.1' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.79 copying path '/nix/store/lphbn1va4i43fj7f3m9xskf9y86khzf3-xz-5.4.6' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.80 copying path '/nix/store/0lfxbmchigx9vs9qmrlbahcy6nxwfnj1-patch-2.7.6' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.81 copying path '/nix/store/mxcq77rlan82dzpv3cgj0fh6qvv8ncil-bzip2-1.0.8-bin' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.81 copying path '/nix/store/xx7x1dwybpssfhq8yikvzz38bh3yrq97-file-5.45' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.81 copying path '/nix/store/mjgi65m3hgzqqvqcix848gskkw5zzwi9-acl-2.3.2' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.83 copying path '/nix/store/j5chw7v1x3vlmf3wmdpdb5gwh9hl0b80-gzip-1.13' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.84 copying path '/nix/store/rik7p68cq7yzlj5pmfpf4yv6jnrpvlgf-gnutar-1.35' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.85 copying path '/nix/store/6i4xxaa812vsbli9jkq4mksdddrk27lw-xz-5.4.6-bin' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.87 copying path '/nix/store/28gpmx3z6ss3znd7fhmrzmvk3x5lnfbk-gnugrep-3.11' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.386412
#11 19.93 copying path '/nix/store/7ivacs3m2fm19hyxdmrs05xisj82v6y5-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.549650
#11 19.93 copying path '/nix/store/nbad47q0m0m9c5xid7zh05hiknwircbp-patchelf-0.15.0' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.549650
#11 19.96 copying path '/nix/store/php4qidg2bxzmm79vpri025bqi0fa889-coreutils-9.5' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.549650
#11 20.00 copying path '/nix/store/i34mknsjgrfyy71k2h79gda0bvagzc2j-diffutils-3.10' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.549650
#11 20.00 copying path '/nix/store/jjcsr5gs4qanf7ln5c6wgcq4sn75a978-findutils-4.9.0' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.549650
#11 20.00 copying path '/nix/store/1iscdpbd3x9x3s3s25jd5ppl7yra0b77-perl-5.38.2' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.549650
#11 20.03 copying path '/nix/store/rg6agzlb4gcl4w2126m16qm4mgr8jgi6-stdenv-linux' from 'https://cache.nixos.org'.../
2025-Jan-22 17:09:41.549650
#11 20.10 building '/nix/store/hpybn12g5ny53hbyvrlvzdl3hpk392ql-builder.pl.drv'...
2025-Jan-22 17:09:41.656540
#11 20.20 building '/nix/store/x9qrr2jb0d9d7gjg77imaric1nr9wl3s-libraries.drv'...
2025-Jan-22 17:09:41.814272
#11 20.36 building '/nix/store/4vjgp6bh2gja20gkg167x66kgk10c24j-ba913eda2df8eb72147259189d55932012df6301-env.drv'...
2025-Jan-22 17:09:42.242484
#11 20.79 building '/nix/store/llvngay9gncvs8l6dw01c6wlbh35zzf0-ba913eda2df8eb72147259189d55932012df6301-env.drv'...
2025-Jan-22 17:09:42.378021
#11 20.84 created 4 symlinks in user environment
2025-Jan-22 17:09:42.378021
#11 20.92 building '/nix/store/sgr2rjifm1ycr1zjm16zw1xvi2mxxikd-user-environment.drv'...
2025-Jan-22 17:09:42.578690
#11 21.13 removing old generations of profile /nix/var/nix/profiles/per-user/root/profile
2025-Jan-22 17:09:42.578690
#11 21.13 removing profile version 2
2025-Jan-22 17:09:42.695442
#11 21.13 removing old generations of profile /nix/var/nix/profiles/per-user/root/channels
2025-Jan-22 17:09:42.695442
#11 21.13 removing old generations of profile /nix/var/nix/profiles/per-user/root/profile
2025-Jan-22 17:09:42.695442
#11 21.13 removing old generations of profile /nix/var/nix/profiles/per-user/root/channels
2025-Jan-22 17:09:42.695442
#11 21.13 finding garbage collector roots...
2025-Jan-22 17:09:42.695442
#11 21.13 removing stale link from '/nix/var/nix/gcroots/auto/v73nmmh5d8van4ja5c8jn0gjlwhxbz3a' to '/nix/var/nix/profiles/per-user/root/profile-2-link'
2025-Jan-22 17:09:42.695442
#11 21.13 deleting garbage...
2025-Jan-22 17:09:42.695442
#11 21.18 deleting '/nix/store/1iscdpbd3x9x3s3s25jd5ppl7yra0b77-perl-5.38.2'
2025-Jan-22 17:09:42.695442
#11 21.24 deleting '/nix/store/5xynf9c9ml7d97q70kpq9rpqqmx13xl8-libxcrypt-4.4.36'
2025-Jan-22 17:09:42.873318
#11 21.24 deleting '/nix/store/rg6agzlb4gcl4w2126m16qm4mgr8jgi6-stdenv-linux'
2025-Jan-22 17:09:42.873318
#11 21.24 deleting '/nix/store/6i4xxaa812vsbli9jkq4mksdddrk27lw-xz-5.4.6-bin'
2025-Jan-22 17:09:42.873318
#11 21.24 deleting '/nix/store/lphbn1va4i43fj7f3m9xskf9y86khzf3-xz-5.4.6'
2025-Jan-22 17:09:42.873318
#11 21.25 deleting '/nix/store/8vvkbgmnin1x2jkp7wcb2zg1p0vc4ks9-gawk-5.2.2'
2025-Jan-22 17:09:42.873318
#11 21.25 deleting '/nix/store/jjcsr5gs4qanf7ln5c6wgcq4sn75a978-findutils-4.9.0'
2025-Jan-22 17:09:42.873318
#11 21.26 deleting '/nix/store/i34mknsjgrfyy71k2h79gda0bvagzc2j-diffutils-3.10'
2025-Jan-22 17:09:42.873318
#11 21.26 deleting '/nix/store/php4qidg2bxzmm79vpri025bqi0fa889-coreutils-9.5'
2025-Jan-22 17:09:42.873318
#11 21.26 deleting '/nix/store/7ivacs3m2fm19hyxdmrs05xisj82v6y5-gmp-with-cxx-6.3.0'
2025-Jan-22 17:09:42.873318
#11 21.26 deleting '/nix/store/xx7x1dwybpssfhq8yikvzz38bh3yrq97-file-5.45'
2025-Jan-22 17:09:42.873318
#11 21.27 deleting '/nix/store/nbad47q0m0m9c5xid7zh05hiknwircbp-patchelf-0.15.0'
2025-Jan-22 17:09:42.873318
#11 21.27 deleting '/nix/store/xvzz97yk73hw03v5dhhz3j47ggwf1yq1-gcc-13.2.0-lib'
2025-Jan-22 17:09:42.873318
#11 21.27 deleting '/nix/store/p5l041qdj83dg93parxblr0q0al3hhsc-source'
2025-Jan-22 17:09:44.839248
#11 23.39 deleting '/nix/store/j5chw7v1x3vlmf3wmdpdb5gwh9hl0b80-gzip-1.13'
2025-Jan-22 17:09:44.945238
#11 23.39 deleting '/nix/store/306znyj77fv49kwnkpxmb0j2znqpa8bj-bash-5.2p26'
2025-Jan-22 17:09:44.945238
#11 23.39 deleting '/nix/store/jdxlsyfxs63rxxhrzgc3mnhx0mz6s595-libraries'
2025-Jan-22 17:09:44.945238
#11 23.39 deleting '/nix/store/0rxb3ixzk4zaqivc9s795m0a3679wbw2-gcc-13.2.0-libgcc'
2025-Jan-22 17:09:44.945238
#11 23.39 deleting '/nix/store/bq6xbl9cq6hkcn65mz2fzc2k38xiv87h-update-autotools-gnu-config-scripts-hook'
2025-Jan-22 17:09:44.945238
#11 23.39 deleting '/nix/store/28gpmx3z6ss3znd7fhmrzmvk3x5lnfbk-gnugrep-3.11'
2025-Jan-22 17:09:44.945238
#11 23.39 deleting '/nix/store/mxcq77rlan82dzpv3cgj0fh6qvv8ncil-bzip2-1.0.8-bin'
2025-Jan-22 17:09:44.945238
#11 23.40 deleting '/nix/store/0lfxbmchigx9vs9qmrlbahcy6nxwfnj1-patch-2.7.6'
2025-Jan-22 17:09:44.945238
#11 23.40 deleting '/nix/store/1sffjkg6c6ff16fz5yr0pnz3j7vja42h-ed-1.20.2'
2025-Jan-22 17:09:44.945238
#11 23.40 deleting '/nix/store/lv6nackqis28gg7l2ic43f6nk52hb39g-zlib-1.3.1'
2025-Jan-22 17:09:44.945238
#11 23.40 deleting '/nix/store/rik7p68cq7yzlj5pmfpf4yv6jnrpvlgf-gnutar-1.35'
2025-Jan-22 17:09:44.945238
#11 23.40 deleting '/nix/store/mjgi65m3hgzqqvqcix848gskkw5zzwi9-acl-2.3.2'
2025-Jan-22 17:09:44.945238
#11 23.40 deleting '/nix/store/5nk2ga7i2f030am4qpcdsd8qlk6i3z83-attr-2.5.2'
2025-Jan-22 17:09:44.945238
#11 23.41 deleting '/nix/store/cdzpn0rdq810aknww3w9fy3wmw9ixr66-gnumake-4.4.1'
2025-Jan-22 17:09:44.945238
#11 23.41 deleting '/nix/store/5zjms21vpxlkbc0qyl5pmj2sidfmzmd7-gnused-4.9'
2025-Jan-22 17:09:44.945238
#11 23.41 deleting '/nix/store/4vkw8ifh2naxmxl323vzq0scm0l36c1v-builder.pl'
2025-Jan-22 17:09:44.945238
#11 23.41 deleting '/nix/store/4i0j14zymvlngyyhq2254f4g9m9my98y-gnu-config-2024-01-01'
2025-Jan-22 17:09:44.945238
#11 23.41 deleting '/nix/store/g3vi60zgyjsvij7xkk6dxky1hkwh0ynd-pcre2-10.43'
2025-Jan-22 17:09:44.945238
#11 23.42 deleting '/nix/store/xwcf1rw3ackqp2vxms9myf9jq2ny6ynv-bzip2-1.0.8'
2025-Jan-22 17:09:44.945238
#11 23.42 deleting '/nix/store/x8qxydj0z1kr0k45fsghr09i42jqgha7-user-environment'
2025-Jan-22 17:09:44.945238
#11 23.43 deleting '/nix/store/5phqrlx7d3hkfb0nvsrksf1jzjfydn87-user-environment.drv'
2025-Jan-22 17:09:44.945238
#11 23.43 deleting '/nix/store/x89yq2finv4a2xxc78s394q3ah7gpggv-env-manifest.nix'
2025-Jan-22 17:09:44.945238
#11 23.43 deleting unused links...
2025-Jan-22 17:09:44.945238
#11 23.43 note: currently hard linking saves -0.00 MiB
2025-Jan-22 17:09:44.945238
#11 23.49 36 store paths deleted, 245.14 MiB freed
2025-Jan-22 17:09:45.134967
#11 DONE 23.7s
2025-Jan-22 17:09:45.266905
#12 [stage-0  7/19] RUN sudo apt-get update && sudo apt-get install -y --no-install-recommends curl wget
2025-Jan-22 17:09:45.266905
#12 0.131 Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB]
2025-Jan-22 17:09:45.450561
#12 0.315 Get:2 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [2561 kB]
2025-Jan-22 17:09:45.582555
#12 0.316 Get:3 http://archive.ubuntu.com/ubuntu jammy InRelease [270 kB]
2025-Jan-22 17:09:45.582555
#12 0.447 Get:4 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [3527 kB]
2025-Jan-22 17:09:45.786958
#12 0.496 Get:5 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1228 kB]
2025-Jan-22 17:09:45.786958
#12 0.501 Get:6 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [45.2 kB]
2025-Jan-22 17:09:46.091229
#12 0.956 Get:7 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB]
2025-Jan-22 17:09:46.244595
#12 1.109 Get:8 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB]
2025-Jan-22 17:09:46.398620
#12 1.263 Get:9 http://archive.ubuntu.com/ubuntu jammy/restricted amd64 Packages [164 kB]
2025-Jan-22 17:09:46.601533
#12 1.315 Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 Packages [1792 kB]
2025-Jan-22 17:09:46.765393
#12 1.630 Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 Packages [17.5 MB]
2025-Jan-22 17:09:47.454631
#12 2.319 Get:12 http://archive.ubuntu.com/ubuntu jammy/multiverse amd64 Packages [266 kB]
2025-Jan-22 17:09:47.578539
#12 2.322 Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [3663 kB]
2025-Jan-22 17:09:47.578539
#12 2.443 Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [53.3 kB]
2025-Jan-22 17:09:47.743101
#12 2.445 Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1519 kB]
2025-Jan-22 17:09:47.743101
#12 2.504 Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2860 kB]
2025-Jan-22 17:09:47.743101
#12 2.607 Get:17 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [33.8 kB]
2025-Jan-22 17:09:47.894122
#12 2.608 Get:18 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [81.4 kB]
2025-Jan-22 17:09:48.169098
#12 3.034 Fetched 35.9 MB in 3s (12.2 MB/s)
2025-Jan-22 17:09:48.169098
#12 3.034 Reading package lists...
2025-Jan-22 17:09:48.782028
2025-Jan-22 17:09:48.981199
#12 3.695 Reading package lists...
2025-Jan-22 17:09:49.411875
2025-Jan-22 17:09:49.529072
#12 4.288 Building dependency tree...
2025-Jan-22 17:09:49.529072
#12 4.394 Reading state information...
2025-Jan-22 17:09:49.648920
#12 4.513 curl is already the newest version (7.81.0-1ubuntu1.20).
2025-Jan-22 17:09:49.648920
#12 4.513 The following NEW packages will be installed:
2025-Jan-22 17:09:49.648920
#12 4.513   wget
2025-Jan-22 17:09:49.854436
#12 4.568 0 upgraded, 1 newly installed, 0 to remove and 2 not upgraded.
2025-Jan-22 17:09:49.854436
#12 4.568 Need to get 339 kB of archives.
2025-Jan-22 17:09:49.854436
#12 4.568 After this operation, 950 kB of additional disk space will be used.
2025-Jan-22 17:09:49.854436
#12 4.568 Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 wget amd64 1.21.2-2ubuntu1.1 [339 kB]
2025-Jan-22 17:09:49.883677
#12 4.748 debconf: delaying package configuration, since apt-utils is not installed
2025-Jan-22 17:09:50.006111
#12 4.769 Fetched 339 kB in 0s (2194 kB/s)
2025-Jan-22 17:09:50.006111
#12 4.781 Selecting previously unselected package wget.
2025-Jan-22 17:09:50.006111
#12 4.781 (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 10745 files and directories currently installed.)
2025-Jan-22 17:09:50.006111
#12 4.787 Preparing to unpack .../wget_1.21.2-2ubuntu1.1_amd64.deb ...
2025-Jan-22 17:09:50.006111
#12 4.787 Unpacking wget (1.21.2-2ubuntu1.1) ...
2025-Jan-22 17:09:50.006111
#12 4.804 Setting up wget (1.21.2-2ubuntu1.1) ...
2025-Jan-22 17:09:50.006111
#12 DONE 4.9s
2025-Jan-22 17:09:50.107827
#13 [stage-0  8/19] COPY .nixpacks/assets /assets/
2025-Jan-22 17:09:50.107827
#13 DONE 0.0s
2025-Jan-22 17:09:50.107827
2025-Jan-22 17:09:50.107827
#14 [stage-0  9/19] COPY . /app/.
2025-Jan-22 17:09:50.107827
#14 DONE 0.0s
2025-Jan-22 17:09:50.107827
2025-Jan-22 17:09:50.107827
#15 [stage-0 10/19] RUN  caddy fmt --overwrite /assets/Caddyfile
2025-Jan-22 17:09:50.107827
#15 DONE 0.1s
2025-Jan-22 17:09:50.239738
#16 [stage-0 11/19] COPY . /app/.
2025-Jan-22 17:09:50.239738
#16 DONE 0.0s
2025-Jan-22 17:09:50.239738
2025-Jan-22 17:09:50.239738
#17 [stage-0 12/19] RUN --mount=type=cache,id=zsccwc80ko44gg0oww8oo0cs-/root/local/share/pnpm/store/v3,target=/root/.local/share/pnpm/store/v3 npm install -g corepack pm2
2025-Jan-22 17:09:50.239738
#17 0.120 npm warn config production Use `--omit=dev` instead.

@peaklabs-dev
Copy link
Member

peaklabs-dev commented Jan 22, 2025

For me the deployment is successful, but then the running application has some problems with the following error (check container logs) /bin/bash: line 1: pm2-docker: command not found. This is probably a configuration issue, not a Coolify bug.

I would suggest opening a support thread on discord and if this is a bug on our end, which I highly doubt, we can reopen this issue.

@github-actions github-actions bot removed 🐛 Bug Reported issues that need to be reproduced by the team. 💤 Waiting for feedback Issues awaiting a response from the author. labels Jan 22, 2025
@actraiser
Copy link
Author

Thank you for checking. Yes, it could be that the successfully build app does not run, i have not tested that because I was only interested in the failed building step when Node 22 is configured. When the app builds fine on your end, then there is another problem / edge case with my Server/Coolify-Setup. I will investigate further and eventually go to discord as suggested. Thanks again.

-act

@actraiser
Copy link
Author

@peaklabs-dev I found this older comment with a similar issue over at #3981 (comment)

I added "pnpm i" to the build configuration in coolify ui as suggested and now it builds fine with Node 22 configured in the .toml. Not sure how this is all playing together, but I am happy now.

-act

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants