Skip to content
Open
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: 4 additions & 0 deletions packages/env/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Bug Fixes

- Point the apt sources of the bullseye-based WordPress images (PHP 7.4 and 8.0) at `archive.debian.org`, so building them no longer fails now that Debian 11 has reached end-of-life and left the regular mirrors.

## 11.0.0 (2026-02-18)

### Bug Fixes
Expand Down
7 changes: 7 additions & 0 deletions packages/env/lib/runtime/docker/init-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,13 @@ RUN sed -i 's|deb.debian.org/debian buster|archive.debian.org/debian buster|g' /
RUN sed -i 's|security.debian.org/debian-security buster/updates|archive.debian.org/debian-security buster/updates|g' /etc/apt/sources.list
RUN sed -i '/buster-updates/d' /etc/apt/sources.list

# bullseye (https://www.debian.org/News/2026/20260831)
Comment thread
desrosj marked this conversation as resolved.
# The security suite is not on archive.debian.org yet, so it is dropped rather
# than rewritten.
RUN sed -i 's|deb.debian.org/debian bullseye|archive.debian.org/debian bullseye|g' /etc/apt/sources.list
Comment thread
desrosj marked this conversation as resolved.
RUN sed -i '/bullseye-security/d' /etc/apt/sources.list
RUN sed -i '/bullseye-updates/d' /etc/apt/sources.list

# Create the host's user so that we can match ownership in the container.
ARG HOST_USERNAME
ARG HOST_UID
Expand Down
Loading