From cc817aee9916b4b250be937979ca02c1a412f277 Mon Sep 17 00:00:00 2001 From: Peter Galonza Date: Wed, 15 May 2024 23:14:43 +0300 Subject: [PATCH] add zip and git in image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7283e9524..7e056b51f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app/ COPY ./requirements.txt /opt/requirements.txt -RUN apt-get install -y --no-install-recommends jq curl +RUN apt-get install -y --no-install-recommends jq curl zip git RUN apt-get install -y --no-install-recommends python3-venv && \ python3 -m venv /opt/venv && \