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
1 change: 1 addition & 0 deletions images/php/7.2-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ RUN apt-get update \
unzip \
vim \
openssh-client \
jq \
gnupg2 \
ca-certificates \
lsb-release \
Expand Down
1 change: 1 addition & 0 deletions images/php/7.2-cli/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ fi

# Configure composer
[ ! -z "${COMPOSER_VERSION}" ] && \
composer clearcache && \
composer self-update $COMPOSER_VERSION

[ ! -z "${COMPOSER_GITHUB_TOKEN}" ] && \
Expand Down
1 change: 1 addition & 0 deletions images/php/7.3-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ RUN apt-get update \
unzip \
vim \
openssh-client \
jq \
gnupg2 \
ca-certificates \
lsb-release \
Expand Down
1 change: 1 addition & 0 deletions images/php/7.3-cli/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ fi

# Configure composer
[ ! -z "${COMPOSER_VERSION}" ] && \
composer clearcache && \
composer self-update $COMPOSER_VERSION

[ ! -z "${COMPOSER_GITHUB_TOKEN}" ] && \
Expand Down
1 change: 1 addition & 0 deletions images/php/7.4-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ RUN apt-get update \
unzip \
vim \
openssh-client \
jq \
gnupg2 \
ca-certificates \
lsb-release \
Expand Down
1 change: 1 addition & 0 deletions images/php/8.0-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ RUN apt-get update \
unzip \
vim \
openssh-client \
jq \
gnupg2 \
ca-certificates \
lsb-release \
Expand Down
1 change: 1 addition & 0 deletions images/php/8.1-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ RUN apt-get update \
unzip \
vim \
openssh-client \
jq \
gnupg2 \
ca-certificates \
lsb-release \
Expand Down
1 change: 1 addition & 0 deletions images/php/8.2-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ RUN apt-get update \
unzip \
vim \
openssh-client \
jq \
gnupg2 \
ca-certificates \
lsb-release \
Expand Down
1 change: 1 addition & 0 deletions src/Command/Image/GeneratePhp.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ class GeneratePhp extends Command
'unzip',
'vim',
'openssh-client',
'jq'
];

private const PHP_EXTENSIONS_ENABLED_BY_DEFAULT = [
Expand Down