| 1 |
diff --git a/lib/runtime/docker/docker-config.js b/lib/runtime/docker/docker-config.js |
| 2 |
index a6c0f306ab50739c97fd1ada648f3dbc6c2333e8..8adf071f6d63d2dafb3e7bbfa4871028cfe01327 100644 |
| 3 |
--- a/lib/runtime/docker/docker-config.js |
| 4 |
+++ b/lib/runtime/docker/docker-config.js |
| 5 |
@@ -95,6 +95,13 @@ RUN sed -i 's|deb.debian.org/debian buster|archive.debian.org/debian buster|g' / |
| 6 |
RUN sed -i 's|security.debian.org/debian-security buster/updates|archive.debian.org/debian-security buster/updates|g' /etc/apt/sources.list |
| 7 |
RUN sed -i '/buster-updates/d' /etc/apt/sources.list |
| 8 |
|
| 9 |
+# bullseye (https://www.debian.org/News/2026/20260831) |
| 10 |
+# The security suite is not on archive.debian.org yet, so it is dropped rather |
| 11 |
+# than rewritten. |
| 12 |
+RUN sed -i 's|deb.debian.org/debian bullseye|archive.debian.org/debian bullseye|g' /etc/apt/sources.list |
| 13 |
+RUN sed -i '/bullseye-security/d' /etc/apt/sources.list |
| 14 |
+RUN sed -i '/bullseye-updates/d' /etc/apt/sources.list |
| 15 |
+ |
| 16 |
# Create the host's user so that we can match ownership in the container. |
| 17 |
ARG HOST_USERNAME |
| 18 |
ARG HOST_UID |
| 19 |
|