From ad062f347f08e2402a8e1db5409ba3ec74a5ab06 Mon Sep 17 00:00:00 2001 From: ChristophShyper <45788587+ChristophShyper@users.noreply.github.com> Date: Thu, 4 Jun 2026 14:56:04 +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 94d288e..7472b24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ COPY entrypoint.sh / COPY alpine-packages.txt /tmp/alpine-packages.txt # Install needed packages -SHELL ["/bin/sh", "-euxo", "pipefail", "-c"] +SHELL ["/bin/ash", "-euxo", "pipefail", "-c"] # hadolint ignore=DL3018 RUN set -eux; \ xargs -r apk add --no-cache < /tmp/alpine-packages.txt; \