From c256e6e2ad490b05dfe085d431d04b36c30870c3 Mon Sep 17 00:00:00 2001 From: david Date: Mon, 20 May 2024 09:52:15 +0200 Subject: [PATCH] Using bash in Dockerfile run step --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b6a7056..2dc55eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,5 +5,5 @@ RUN apt-get update && apt-get install -y \ unzip \ zip \ && rm -rf /var/lib/apt/lists/* -RUN "$(curl -fsSL https://git.phoenix.ipv64.de/public/warp4j/raw/branch/feature/update_install_script/install)" +RUN ["/bin/bash", "-c", "$(curl -fsSL https://git.phoenix.ipv64.de/public/warp4j/raw/branch/feature/update_install_script/install)"] ENTRYPOINT [ "/usr/local/bin/warp4j" ]