Fails at the docker compose up --build from the script builds everything except funnel
$ docker compose up --build
[+] Building 2.8s (7/10)
=> [internal] load local bake definitions 0.0s
=> => reading from stdin 671B 0.0s
=> [internal] load build definition from Dockerfile 0.0s
=> => transferring dockerfile: 629B 0.0s
=> [internal] load metadata for docker.io/library/docker:dind-rootless 0.7s
=> [internal] load .dockerignore 0.0s
=> => transferring context: 2B 0.0s
=> CACHED [1/5] FROM docker.io/library/docker:dind-rootless@sha256:06cbcbc282cf54fc1c4c2c326d236bb3e8aeaf9928c946f5a5128f1077994913 0.0s
=> => resolve docker.io/library/docker:dind-rootless@sha256:06cbcbc282cf54fc1c4c2c326d236bb3e8aeaf9928c946f5a5128f1077994913 0.0s
=> [internal] load build context 0.0s
=> => transferring context: 35B 0.0s
=> ERROR [2/5] RUN apk add --no-cache curl perl-utils && sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohsu-comp-bio/funnel/refs/heads/develop/install.sh)" -- v0.11.8 1.9s
------
> [2/5] RUN apk add --no-cache curl perl-utils && sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohsu-comp-bio/funnel/refs/heads/develop/install.sh)" -- v0.11.8 && cp /root/.local/bin/funnel /usr/local/bin/funnel && chown rootless:rootless /usr/local/bin/funnel && chmod +x /usr/local/bin/funnel && apk del curl perl-utils:
0.779 (1/7) Installing curl (8.17.0-r1)
0.818 (2/7) Installing libbz2 (1.0.8-r6)
0.837 (3/7) Installing perl (5.42.2-r0)
1.234 (4/7) Installing perl-error (0.17030-r0)
1.246 (5/7) Installing perl-git (2.52.0-r0)
1.262 (6/7) Installing git-perl (2.52.0-r0)
1.308 (7/7) Installing perl-utils (5.42.2-r0)
1.327 Executing busybox-1.37.0-r30.trigger
1.339 OK: 89.1 MiB in 99 packages
1.560 Fetching release for version v0.11.8...
------
[+] up 0/1
⠙ Image demostack-funnel Building 2.9s
Dockerfile:5
--------------------
4 | USER root
5 | >>> RUN apk add --no-cache curl perl-utils \
6 | >>> && sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohsu-comp-bio/funnel/refs/heads/develop/install.sh)" -- ${FUNNEL_VERSION} \
7 | >>> && cp /root/.local/bin/funnel /usr/local/bin/funnel \
8 | >>> && chown rootless:rootless /usr/local/bin/funnel \
9 | >>> && chmod +x /usr/local/bin/funnel \
10 | >>> && apk del curl perl-utils
11 | USER rootless
--------------------
failed to solve: process "/bin/sh -c apk add --no-cache curl perl-utils && sh -c \"$(curl -fsSL https://raw.githubusercontent.com/ohsu-comp-bio/funnel/refs/heads/develop/install.sh)\" -- ${FUNNEL_VERSION} && cp /root/.local/bin/funnel /usr/local/bin/funnel && chown rootless:rootless /usr/local/bin/funnel && chmod +x /usr/local/bin/funnel && apk del curl perl-utils" did not complete successfully: exit code: 1
Fails at the docker compose up --build from the script builds everything except funnel