From 7722984df57c847d7f5b2a02012f57da70a6bbde Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Wed, 1 May 2024 17:57:27 +0800 Subject: [PATCH] Update Dockerfile base image to Python v3.11.9 --- docker/Dockerfile | 4 ++-- docker/arm.Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index a785bed..08cf090 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10.10-slim-bullseye as builder +FROM python:3.11.9-slim-bullseye as builder WORKDIR /app @@ -19,7 +19,7 @@ RUN ./venv/bin/pip install Babel==2.12.1 && ./venv/bin/python scripts/compile_lo && ./venv/bin/pip install . \ && ./venv/bin/pip cache purge -FROM python:3.10.10-slim-bullseye +FROM python:3.11.9-slim-bullseye ARG with_models=false ARG models="" diff --git a/docker/arm.Dockerfile b/docker/arm.Dockerfile index 8a6831e..2d7eb99 100644 --- a/docker/arm.Dockerfile +++ b/docker/arm.Dockerfile @@ -1,4 +1,4 @@ -FROM arm64v8/python:3.10.10-slim-bullseye as builder +FROM arm64v8/python:3.11.9-slim-bullseye as builder WORKDIR /app @@ -19,7 +19,7 @@ RUN ./venv/bin/pip install Babel==2.12.1 && ./venv/bin/python scripts/compile_lo && ./venv/bin/pip install . \ && ./venv/bin/pip cache purge -FROM arm64v8/python:3.10.10-slim-bullseye +FROM arm64v8/python:3.11.9-slim-bullseye ARG with_models=false ARG models=""