From 9b3145d063d6da346b1c501dfbcb9be90b6ee232 Mon Sep 17 00:00:00 2001 From: ChristophShyper <45788587+ChristophShyper@users.noreply.github.com> Date: Thu, 4 Jun 2026 14:55:47 +0200 Subject: [PATCH] feat: switch to go-task/setup-task and update shell to /bin/ash in Dockerfiles --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c9197f6..5be836b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ COPY alpine-packages.txt /tmp/alpine-packages.txt COPY entrypoint.sh /usr/bin/ # Install prerequisits -SHELL ["/bin/sh", "-euxo", "pipefail", "-c"] +SHELL ["/bin/ash", "-euxo", "pipefail", "-c"] RUN apk update --no-cache ;\ xargs -r apk add --no-cache < /tmp/alpine-packages.txt ;\ pip3 install --break-system-packages --no-cache-dir -r /tmp/requirements.txt ;\