install git in dockerfile

This commit is contained in:
Son 2021-10-27 11:20:18 +02:00
parent 78ad9fbcc5
commit 35256bcdeb
1 changed files with 1 additions and 1 deletions

View File

@ -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 \