From 806f4ae2f73c63e6ba4cc9542d1a35d3266cf466 Mon Sep 17 00:00:00 2001 From: Dmitry Afanasyev Date: Mon, 14 Feb 2022 20:24:09 +0300 Subject: [PATCH] poetry and pip updated --- python-poetry/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python-poetry/Dockerfile b/python-poetry/Dockerfile index ddee851..af8aa23 100644 --- a/python-poetry/Dockerfile +++ b/python-poetry/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.7.9 +FROM python:3.10.2 # python: ENV PYTHONFAULTHANDLER=1 \ @@ -10,7 +10,7 @@ ENV PYTHONFAULTHANDLER=1 \ PIP_DISABLE_PIP_VERSION_CHECK=on \ PIP_DEFAULT_TIMEOUT=100 \ # poetry: - POETRY_VERSION=1.1.11 \ + POETRY_VERSION=1.1.13 \ POETRY_NO_INTERACTION=1 \ POETRY_VIRTUALENVS_CREATE=false \ POETRY_CACHE_DIR='/var/cache/pypoetry' \ @@ -30,6 +30,7 @@ RUN apt update \ # Installing `poetry` package manager: # # https://github.com/python-poetry/poetry # && curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python - + && pip install --upgrade pip \ && pip install poetry COPY ./pyproject.toml /code/