[docker] use python3.11-slim as base image

Change-Id: I0f9bf2a8d459bab22c3ebb926e1b9787b54c2eeb
This commit is contained in:
Andrey Kurilin 2023-12-01 12:45:42 +01:00
parent 46afd01f5f
commit 2d7f51d2d7
2 changed files with 8 additions and 2 deletions

View File

@ -26,6 +26,12 @@ Fixed
* Parsing subunit v2 stream (rally-verify component) when the result is
wrapped by ``memoryview`` python object.
Changed
~~~~~~~
* `xrally/xrally docker image <https://hub.docker.com/r/xrally/xrally>`_ switched
to use python3.11-slim as a base image instead of python3.9-slim.
Added
~~~~~

View File

@ -1,6 +1,6 @@
FROM python:3.9-slim
FROM python:3.11-slim
RUN apt-get update && apt-get install --yes sudo vim git-core && \
RUN apt-get update && apt-get install --yes sudo vim git-core build-essential && \
apt clean && \
python3 -m pip --no-cache-dir install --upgrade pip setuptools && \
useradd -u 65500 -m rally && \