diff --git a/Dockerfile b/Dockerfile index 61638f7c..7c899399 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,10 +23,10 @@ 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 git libre2-dev \ + && apt install -y curl netcat-traditional gcc python3-dev gnupg git libre2-dev \ && curl -sSL https://install.python-poetry.org | python3 - \ # Remove curl and netcat from the image - && apt-get purge -y curl netcat \ + && apt-get purge -y curl netcat-traditional \ # Run poetry && poetry config virtualenvs.create false \ && poetry install --no-interaction --no-ansi --no-root \