Skip to content

Commit 5d40d53

Browse files
packaging: fix Debian buster repo issues (#10598)
Signed-off-by: Patrick Stephens <[email protected]>
1 parent f3e1342 commit 5d40d53

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

packaging/distros/debian/Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ ENV DEBIAN_FRONTEND="noninteractive" \
1717
ARG CMAKE_VERSION="3.31.6"
1818
ARG CMAKE_URL="https://github.com/Kitware/CMake/releases/download"
1919

20+
# Patch to archive.debian.org
21+
# https://lists.debian.org/debian-devel-announce/2025/06/msg00001.html
22+
RUN sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list && \
23+
sed -i s/security.debian.org/archive.debian.org/g /etc/apt/sources.list
24+
2025
# hadolint ignore=DL3008,DL3015
2126
RUN apt-get -qq update && \
2227
apt-get install -y curl ca-certificates build-essential \
@@ -43,6 +48,11 @@ COPY --from=multiarch-aarch64 /usr/bin/qemu-aarch64-static /usr/bin/qemu-aarch64
4348
ARG CMAKE_VERSION="3.31.6"
4449
ARG CMAKE_URL="https://github.com/Kitware/CMake/releases/download"
4550

51+
# Patch to archive.debian.org
52+
# https://lists.debian.org/debian-devel-announce/2025/06/msg00001.html
53+
RUN sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list && \
54+
sed -i s/security.debian.org/archive.debian.org/g /etc/apt/sources.list
55+
4656
# hadolint ignore=DL3008,DL3015
4757
RUN apt-get -qq update && \
4858
apt-get install -y curl ca-certificates build-essential \

0 commit comments

Comments
 (0)