From 0124817c4a72997178701f089385fab00be10078 Mon Sep 17 00:00:00 2001 From: David Trattnig <david@subsquare.at> Date: Fri, 15 Mar 2024 11:40:59 +0100 Subject: [PATCH] chore: update python version --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4aea77b5..25bb5eab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -FROM python:3.10-slim as base +FROM python:3.11-slim as base LABEL maintainer="David Trattnig <david.trattnig@subsquare.at>" ENV AURA_UID=2872 @@ -20,8 +20,8 @@ RUN apt-get update && apt-get -y install \ # Setup Poetry RUN python3 -m venv $POETRY_VENV \ - && $POETRY_VENV/bin/pip install -U pip setuptools \ - && $POETRY_VENV/bin/pip install poetry==${POETRY_VERSION} + && $POETRY_VENV/bin/pip install -U pip setuptools \ + && $POETRY_VENV/bin/pip install poetry==${POETRY_VERSION} ENV PATH="${PATH}:${POETRY_VENV}/bin" # Base Structure -- GitLab