From f7e3e733948e4229f36400f9008eb0f0f8e46b5e Mon Sep 17 00:00:00 2001 From: Yannik Schmidt Date: Tue, 20 Jun 2023 00:36:36 +0200 Subject: [PATCH] fix: install curl for healthcheck --- docker/potaris/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/potaris/Dockerfile b/docker/potaris/Dockerfile index 07b21f6..7d4965b 100644 --- a/docker/potaris/Dockerfile +++ b/docker/potaris/Dockerfile @@ -7,7 +7,7 @@ RUN mkdir /run/secrets/ RUN --mount=type=secret,id=CONFIG_REPOSITORY_KEY,dst=/run/secrets/CONFIG_REPOSITORY_KEY,required echo "$(cat /run/secrets/CONFIG_REPOSITORY_KEY)" && ls -l /run/secrets RUN apt update -RUN apt install python3-pip git -y +RUN apt install python3-pip git curl -y RUN python3 -m pip install waitress RUN python3 -m pip install --upgrade pip