From f1c9d111fd4dd3ac1bfe4d3dc6f83cbdff676d97 Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Wed, 7 Feb 2024 09:28:20 -0700 Subject: [PATCH] python: pgo-llvm-builder: Upgrade dependencies Signed-off-by: Nathan Chancellor --- python/pgo-llvm-builder/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/pgo-llvm-builder/Dockerfile b/python/pgo-llvm-builder/Dockerfile index ffcbf2ef..dd63ed9d 100644 --- a/python/pgo-llvm-builder/Dockerfile +++ b/python/pgo-llvm-builder/Dockerfile @@ -2,7 +2,7 @@ FROM docker.io/debian:10-slim # LLVM may require an newer version of cmake, download and install the latest # prebuilt. -ARG CMAKE_VERSION=3.28.2 +ARG CMAKE_VERSION=3.28.3 RUN apt update && \ apt upgrade -y && \ apt install -y --no-install-recommends \ @@ -28,7 +28,7 @@ RUN apt update && \ # Buster has Python 3.7, tc-build requires at least Python 3.8 due to liberal # use of the walrus operator (':='), so build and install the latest stable # version. -ARG PYTHON_VERSION=3.12.1 +ARG PYTHON_VERSION=3.12.2 RUN dir=$(mktemp -d) && \ url=https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tar.xz && \ wget -O - -q "$url" | tar -C "$dir" --strip-components=1 -xJvf - && \