From b12645d597c64e4c7e71f1b14743dd2839e98d16 Mon Sep 17 00:00:00 2001 From: cryi Date: Wed, 22 May 2024 18:04:07 +0200 Subject: [PATCH] fix alpine container build --- containers/alpine/Containerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/containers/alpine/Containerfile b/containers/alpine/Containerfile index b76a3f4..97c0029 100644 --- a/containers/alpine/Containerfile +++ b/containers/alpine/Containerfile @@ -9,4 +9,5 @@ RUN mkdir -p /bake-buddy RUN wget -q https://github.com/tez-capital/tezbake/raw/main/install.sh -O /tmp/install.sh && sh /tmp/install.sh -RUN useradd -r -s /bin/false ascend \ No newline at end of file +RUN apk add --no-cache shadow && \ + useradd -r -s /bin/false ascend