File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -102,6 +102,8 @@ services:
102102 - INSTALL_LIBPNG=${WORKSPACE_INSTALL_LIBPNG}
103103 - INSTALL_IONCUBE=${WORKSPACE_INSTALL_IONCUBE}
104104 - INSTALL_MYSQL_CLIENT=${WORKSPACE_INSTALL_MYSQL_CLIENT}
105+ - INSTALL_PING=${WORKSPACE_INSTALL_PING}
106+ - INSTALL_SSHPASS=${WORKSPACE_INSTALL_SSHPASS}
105107 - PUID=${WORKSPACE_PUID}
106108 - PGID=${WORKSPACE_PGID}
107109 - CHROME_DRIVER_VERSION=${WORKSPACE_CHROME_DRIVER_VERSION}
@@ -177,6 +179,8 @@ services:
177179 - INSTALL_RDKAFKA=${PHP_FPM_INSTALL_RDKAFKA}
178180 - INSTALL_ADDITIONAL_LOCALES=${PHP_FPM_INSTALL_ADDITIONAL_LOCALES}
179181 - INSTALL_MYSQL_CLIENT=${PHP_FPM_INSTALL_MYSQL_CLIENT}
182+ - INSTALL_PING=${PHP_FPM_INSTALL_PING}
183+ - INSTALL_SSHPASS=${PHP_FPM_INSTALL_SSHPASS}
180184 - ADDITIONAL_LOCALES=${PHP_FPM_ADDITIONAL_LOCALES}
181185 - INSTALL_FFMPEG=${PHP_FPM_FFMPEG}
182186 - http_proxy
Original file line number Diff line number Diff line change @@ -133,6 +133,8 @@ WORKSPACE_INSTALL_TAINT=false
133133WORKSPACE_INSTALL_LIBPNG=false
134134WORKSPACE_INSTALL_IONCUBE=false
135135WORKSPACE_INSTALL_MYSQL_CLIENT=false
136+ WORKSPACE_INSTALL_PING=false
137+ WORKSPACE_INSTALL_SSHPASS=false
136138WORKSPACE_INSTALL_INOTIFY=false
137139WORKSPACE_INSTALL_FSWATCH=false
138140WORKSPACE_PUID=1000
@@ -184,6 +186,8 @@ PHP_FPM_INSTALL_APCU=false
184186PHP_FPM_INSTALL_YAML=false
185187PHP_FPM_INSTALL_ADDITIONAL_LOCALES=false
186188PHP_FPM_INSTALL_MYSQL_CLIENT=false
189+ PHP_FPM_INSTALL_PING=false
190+ PHP_FPM_INSTALL_SSHPASS=false
187191PHP_FPM_FFMPEG=false
188192PHP_FPM_ADDITIONAL_LOCALES="es_ES.UTF-8 fr_FR.UTF-8"
189193
Original file line number Diff line number Diff line change @@ -686,6 +686,32 @@ RUN if [ ${INSTALL_MYSQL_CLIENT} = true ]; then \
686686 apt-get -y install mysql-client \
687687;fi
688688
689+ # ##########################################################################
690+ # ping:
691+ # ##########################################################################
692+
693+ USER root
694+
695+ ARG INSTALL_PING=false
696+
697+ RUN if [ ${INSTALL_PING} = true ]; then \
698+ apt-get update -yqq && \
699+ apt-get -y install inetutils-ping \
700+ ;fi
701+
702+ # ##########################################################################
703+ # sshpass:
704+ # ##########################################################################
705+
706+ USER root
707+
708+ ARG INSTALL_SSHPASS=false
709+
710+ RUN if [ ${INSTALL_SSHPASS} = true ]; then \
711+ apt-get update -yqq && \
712+ apt-get -y install sshpass \
713+ ;fi
714+
689715# ##########################################################################
690716# FFMPEG:
691717# ##########################################################################
Original file line number Diff line number Diff line change @@ -1006,6 +1006,32 @@ RUN if [ ${INSTALL_MYSQL_CLIENT} = true ]; then \
10061006 apt-get -y install mysql-client \
10071007;fi
10081008
1009+ # ##########################################################################
1010+ # ping:
1011+ # ##########################################################################
1012+
1013+ USER root
1014+
1015+ ARG INSTALL_PING=false
1016+
1017+ RUN if [ ${INSTALL_PING} = true ]; then \
1018+ apt-get update -yqq && \
1019+ apt-get -y install inetutils-ping \
1020+ ;fi
1021+
1022+ # ##########################################################################
1023+ # sshpass:
1024+ # ##########################################################################
1025+
1026+ USER root
1027+
1028+ ARG INSTALL_SSHPASS=false
1029+
1030+ RUN if [ ${INSTALL_SSHPASS} = true ]; then \
1031+ apt-get update -yqq && \
1032+ apt-get -y install sshpass \
1033+ ;fi
1034+
10091035# ##########################################################################
10101036# FFMpeg:
10111037# ##########################################################################
You can’t perform that action at this time.
0 commit comments