From e253d1a365dbf07bdb6354f25648a540b072031e Mon Sep 17 00:00:00 2001 From: Mikko Ohtamaa Date: Wed, 23 Oct 2024 21:44:35 +0200 Subject: [PATCH] More Python and Poetry version bumps --- notebook.dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebook.dockerfile b/notebook.dockerfile index fce0eb948..7a836a7bf 100644 --- a/notebook.dockerfile +++ b/notebook.dockerfile @@ -6,7 +6,7 @@ # See official Python Docker images # https://hub.docker.com/_/python/ -FROM python:3.10.9-slim-buster +FROM python:3.11.10-bullseye # pysha3 does not yet work on Python 3.11 # FROM python:3.11.1-slim-buster @@ -21,7 +21,7 @@ ENV PYTHONDONTWRITEBYTECODE 1 \ RUN apt-get update \ && apt-get install curl gcc -y \ - && curl -sSL https://install.python-poetry.org | python - --version 1.3.1 + && curl -sSL https://install.python-poetry.org | python - --version 1.8.1 ENV PATH="/root/.local/bin:$PATH"