Skip to content

Commit

Permalink
python: pgo-llvm-builder: Upgrade dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Chancellor <[email protected]>
  • Loading branch information
nathanchance committed Feb 7, 2024
1 parent 56fdea8 commit f1c9d11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/pgo-llvm-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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 - && \
Expand Down

0 comments on commit f1c9d11

Please sign in to comment.