From 2d7f51d2d761038a0eab4fd834c057432eb29117 Mon Sep 17 00:00:00 2001 From: Andrey Kurilin Date: Fri, 1 Dec 2023 12:45:42 +0100 Subject: [PATCH] [docker] use python3.11-slim as base image Change-Id: I0f9bf2a8d459bab22c3ebb926e1b9787b54c2eeb --- CHANGELOG.rst | 6 ++++++ Dockerfile | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 67a65832f3..2e9b20df15 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 `_ switched + to use python3.11-slim as a base image instead of python3.9-slim. + Added ~~~~~ diff --git a/Dockerfile b/Dockerfile index 224edd29a0..f5d1c5a075 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 && \