From ac0d51532182bbdb559b72319eed05f2b12fa1d0 Mon Sep 17 00:00:00 2001 From: Florian Bacher Date: Wed, 5 Jul 2023 15:45:24 +0200 Subject: [PATCH] fix(python-runtime): install curl to execute scripts referenced via url (#1681) Signed-off-by: Florian Bacher --- python-runtime/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python-runtime/Dockerfile b/python-runtime/Dockerfile index 65d21686b8..e91dd0df66 100644 --- a/python-runtime/Dockerfile +++ b/python-runtime/Dockerfile @@ -6,6 +6,9 @@ LABEL org.opencontainers.image.source="https://github.com/keptn/lifecycle-toolki org.opencontainers.image.vendor="Keptn" \ org.opencontainers.image.licenses="Apache-2.0" + +RUN apk --no-cache add curl + RUN pip install -q --disable-pip-version-check pyyaml GitPython requests COPY entrypoint.sh /entrypoint.sh