diff --git a/Dockerfile b/Dockerfile index 4aea77b5d2b5d355c4d11f62cfc6bfd557220119..25bb5eab94c407e8f0f1f20976dad079c0ecfc81 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