Skip to content
Closed
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
6 changes: 4 additions & 2 deletions cpython-unix/build.cross-riscv64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ENV HOME=/build \
CMD ["/bin/bash", "--login"]
WORKDIR '/build'

RUN for s in debian_buster debian_buster-updates debian-security_buster/updates; do \
RUN for s in debian_buster debian_buster-updates debian-security_buster/updates debian_bullseye; do \
echo "deb http://snapshot.debian.org/archive/${s%_*}/20250109T084424Z/ ${s#*_} main"; \
done > /etc/apt/sources.list && \
( echo 'quiet "true";'; \
Expand All @@ -27,6 +27,8 @@ RUN for s in debian_buster debian_buster-updates debian-security_buster/updates;
echo 'Acquire::Retries "5";'; \
) > /etc/apt/apt.conf.d/99cpython-portable

RUN ( echo 'Package: *'; echo 'Pin: release n=bullseye'; echo 'Pin-Priority: -1' ) > /etc/apt/preferences.d/99cpython-portable

RUN apt-get update

# Build tools, same as in build.Dockerfile
Expand All @@ -49,7 +51,7 @@ RUN apt-get install \

# riscv64 sysroot and host binutils for the riscv64-linux-gnu target
RUN apt-get install \
binutils-riscv64-linux-gnu \
binutils-riscv64-linux-gnu/bullseye \
libc6-riscv64-cross \
libc6-dev-riscv64-cross \
linux-libc-dev-riscv64-cross \
Expand Down
Loading