Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions image/stage2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ RUN --mount=from=container-script,target=/tmp/container-script,readonly \
set -eux -o pipefail

/tmp/container-script/dnf-wrapper.sh install --setopt=tsflags=nodocs \
python3.12-devel python3.12-{pip,cffi,lxml,cryptography} \
python3.13 python3.13-devel python3.13-pip \
;

alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 110
Expand Down Expand Up @@ -123,7 +123,7 @@ RUN --mount=from=container-script,target=/tmp/container-script,readonly \
set -eux -o pipefail

/tmp/container-script/dnf-wrapper.sh install --setopt=tsflags=nodocs \
java-21-openjdk-devel \
java-25-openjdk-devel \
;

rpm --restore --all || :
Expand Down
6 changes: 3 additions & 3 deletions image/stage3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ set -eux -o pipefail
export SOURCE_DATE_EPOCH=0

npm install --cache /var/cache/npm --global 'corepack@0.34.0' && rm -rf /root/.npm
python3 -m pip --disable-pip-version-check --cache-dir /var/cache/pip install \
python3.13 -m pip --disable-pip-version-check --cache-dir /var/cache/pip install \
meson==1.9.1 \
ninja==1.13.0 \
;
Expand All @@ -232,8 +232,8 @@ cd /usr/local/bin

ln -s ../"cmake-${cmake_version_major}"/bin/* ./

runuser -u nobody -- python3 --version
runuser -u nobody -- python3 -m pip --version
runuser -u nobody -- python3.13 --version
runuser -u nobody -- python3.13 -m pip --version
runuser -u nobody -- java -version

#runuser -u nobody -- bazelisk --version # Skipped: downloads latest bazel
Expand Down