This repository was archived by the owner on Feb 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK][INFRA-358] Switch back to php:7.4 image
Due to missing go subdependencies for splitsh-lite-linux, this commit switched back from alpine linux to the standard php:7.4 image. This ensures that the repository splitter go-binary also runs.
- Loading branch information
1 parent
b7c4437
commit edd1a70
Showing
2 changed files
with
5 additions
and
5 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
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,17 +1,17 @@ | ||
FROM php:7.4-alpine | ||
FROM php:7.4 | ||
MAINTAINER TYPO3 GmbH <[email protected]> | ||
|
||
# Bumped version to 5.0.3 in Makefile /tnm | ||
# Bumped version to 5.0.4 in Makefile /tnm | ||
|
||
ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/ | ||
|
||
RUN apk add --no-cache \ | ||
RUN apt update && apt install -y \ | ||
bash \ | ||
file \ | ||
git \ | ||
graphicsmagick \ | ||
grep \ | ||
openssh \ | ||
openssh-client \ | ||
&& chmod +x /usr/local/bin/install-php-extensions \ | ||
&& sync \ | ||
&& install-php-extensions \ | ||
|