From 35256bcdeb93a4dd207cc7be920d79cb9f4d0de4 Mon Sep 17 00:00:00 2001 From: Son Date: Wed, 27 Oct 2021 11:20:18 +0200 Subject: [PATCH] install git in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 47332cbe..f9f715e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ COPY poetry.lock pyproject.toml ./ # Install and setup poetry RUN pip install -U pip \ && apt-get update \ - && apt install -y curl netcat gcc python3-dev gnupg \ + && apt install -y curl netcat gcc python3-dev gnupg git \ && curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - \ # Remove curl and netcat from the image && apt-get purge -y curl netcat \