Added net-tools

This commit is contained in:
cytopia
2022-12-27 12:46:33 +01:00
parent 8e715503ff
commit 393ecc5dac
19 changed files with 196 additions and 0 deletions

View File

@@ -277,6 +277,7 @@ RUN set -eux \
git \
jq \
mupdf-tools \
net-tools \
openssh-client \
rsync \
shellcheck \
@@ -395,6 +396,11 @@ RUN set -eux \
\
&& true
# -------------------- (apt) net-tools --------------------
RUN set -eux \
&& netstat --version | grep net-tools || (netstat --version; false) \
&& true
# -------------------- (custom) php-cs-fixer --------------------
RUN set -eux \
&& PHP_CS_FIXER_URL="https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.2.19/php-cs-fixer.phar" \
@@ -596,6 +602,7 @@ RUN set -eux \
git \
jq \
mupdf-tools \
net-tools \
openssh-client \
rsync \
shellcheck \
@@ -724,6 +731,11 @@ RUN set -eux \
\
&& true
# -------------------- (apt) net-tools --------------------
RUN set -eux \
&& netstat --version | grep net-tools || (netstat --version; false) \
&& true
# -------------------- (custom) php-cs-fixer --------------------
RUN set -eux \
&& php-cs-fixer --version 2>&1 | grep -E 'Fixer\s+(version\s*)?[-_.0-9]+\s+' || (php-cs-fixer --version; false) \