chore(deps): revert update python docker tag to v3.11 (#2245) (#2269)

This reverts commit d2d4ebdf82.
This commit is contained in:
Jonas L 2022-12-07 10:39:18 +01:00 committed by GitHub
parent f585172850
commit 8a516c14c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ ARG LIBRETIME_VERSION
#======================================================================================#
# Python Builder #
#======================================================================================#
FROM python:3.11-slim-bullseye as python-builder
FROM python:3.10-slim-bullseye as python-builder
WORKDIR /build
@ -18,7 +18,7 @@ RUN pip wheel --wheel-dir . --no-deps .
#======================================================================================#
# Python base #
#======================================================================================#
FROM python:3.11-slim-bullseye as python-base
FROM python:3.10-slim-bullseye as python-base
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1