You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to extend the pimcore/pimcore:PHP7.4-fpm image, the following error is thrown on a simple apt-get update.
1.744 E: The repository 'http://deb.debian.org/debian buster-backports Release' does not have a Release file.
------
failed to solve: process "/bin/sh -c apt-get update" did not complete successfully: exit code: 100
This seems to be because of an outdated Debian Repository (see article).
Would it not make sense to upgrade to Debian bullseye or even bookworm?
The text was updated successfully, but these errors were encountered:
@brusch That's what I feared. 😉 Unfortunately, we are still dependent on PHP7.4 for this project and therefore cannot update to a newer Docker image.
For all those who also have this issue, here is a workaround. Add the following line before any apt-get calls.
FROM pimcore/pimcore:PHP7.4-fpm
# Add buster-backports to fix issue with outdated Debian Buster repository
RUN echo"deb http://archive.debian.org/debian buster-backports main contrib non-free"> /etc/apt/sources.list.d/backports.list
...
When trying to extend the
pimcore/pimcore:PHP7.4-fpm
image, the following error is thrown on a simpleapt-get update
.This seems to be because of an outdated Debian Repository (see article).
Would it not make sense to upgrade to Debian bullseye or even bookworm?
The text was updated successfully, but these errors were encountered: