From d1e188e98259f9aba1f3a82a29ba288135cb9a6c Mon Sep 17 00:00:00 2001 From: Benedikt Fuchs Date: Fri, 13 Sep 2024 12:53:54 +0200 Subject: [PATCH] Use upto date docker version --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index da06cc4..e5718b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ # todo: use multistage build to only use what is required at the end. -FROM python:3.10.1 +FROM python:3.12 ARG BUILD=prod ARG BUILD_VERSION=0.1.0 -ENV POETRY_VERSION=1.3.1 +ENV POETRY_VERSION=1.8.3 # should be fixed but as high as possible ENV POETRY_VIRTUALENVS_CREATE=false \ @@ -13,7 +13,7 @@ ENV PATH="$POETRY_HOME/bin:$VENV_PATH/bin:$PATH" # RUN apt-get update && apt-get install -y # install additional packages such as tesseract, imagemagick, g++ etc. IF REQUIRED WORKDIR /app -CMD ["python_template"] # TODO: change to run commando +CMD ["python_template"] # TODO: change to run command RUN curl -sSL https://install.python-poetry.org | python -