-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This fixes a regression we found in cURL v7.85.0 and above where it auto-resolves any "*.localhost" domains to the PHP container, not the Apache container as set in /etc/hosts. We couldn't find a way to alter or override this new behaviour, so we're reverting to an older version of Debian (and cURL) as a workaround.
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM php:8.0-fpm | ||
FROM php:8.0-fpm-bullseye | ||
|
||
LABEL maintainer.name="Pivotal Agency" \ | ||
maintainer.email="[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM php:8.1-fpm | ||
FROM php:8.1-fpm-bullseye | ||
|
||
LABEL maintainer.name="Pivotal Agency" \ | ||
maintainer.email="[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM php:8.2-fpm | ||
FROM php:8.2-fpm-bullseye | ||
|
||
LABEL maintainer.name="Pivotal Agency" \ | ||
maintainer.email="[email protected]" | ||
|