diff --git a/Dockerfile b/Dockerfile index 79dbf7aa5..3ecde4d7f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG LIBRETIME_VERSION #======================================================================================# # Python Builder # #======================================================================================# -FROM python:3.10-slim-bullseye as python-builder +FROM python:3.11-slim-bullseye as python-builder WORKDIR /build @@ -18,7 +18,7 @@ RUN pip wheel --wheel-dir . --no-deps . #======================================================================================# # Python base # #======================================================================================# -FROM python:3.10-slim-bullseye as python-base +FROM python:3.11-slim-bullseye as python-base ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1