Fixed zsh install for PHP 5.6 and 7.0

This commit is contained in:
cytopia
2020-12-01 11:00:13 +01:00
parent 0b37f92cbb
commit 114f1b597d
4 changed files with 6 additions and 0 deletions

View File

@@ -8,6 +8,7 @@
#### Fixed
- Fixed `drupal` (drupal console launcher) for PHP 5.5, 5.6, 7.0 and 7.1
- Fixed `zsh` install for PHP 5.6 and 7.0
## Release 0.118

View File

@@ -120,6 +120,7 @@ RUN set -eux \
zip \
zlib1g-dev \
zsh \
zsh-common=5.3.1-4 \
&& DEBIAN_FRONTEND=noninteractive apt-get purge -qq -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false apt-utils \
&& rm -rf /var/lib/apt/lists/* \
\

View File

@@ -120,6 +120,7 @@ RUN set -eux \
zip \
zlib1g-dev \
zsh \
zsh-common=5.3.1-4 \
&& DEBIAN_FRONTEND=noninteractive apt-get purge -qq -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false apt-utils \
&& rm -rf /var/lib/apt/lists/* \
\

View File

@@ -140,6 +140,9 @@ RUN set -eux \
zip \
zlib1g-dev \
zsh \
{% if php_version in [5.6, 7.0] %}
zsh-common=5.3.1-4 \
{% endif %}
&& DEBIAN_FRONTEND=noninteractive apt-get purge -qq -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false apt-utils \
&& rm -rf /var/lib/apt/lists/* \
\