diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml old mode 100644 new mode 100755 diff --git a/Dockerfile b/Dockerfile old mode 100644 new mode 100755 index b6e5540..5eecae1 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM php:7.2-fpm -RUN apt-get update && apt-get install -y openssh-server ssmtp libpq-dev unzip git libssl1.0-dev && rm -rf /var/lib/apt/lists/* /tmp/* \ +RUN apt-get update && apt-get install -y openssh-server ssmtp libpq-dev unzip git libssl1.0-dev libldap-dev && rm -rf /var/lib/apt/lists/* /tmp/* \ && useradd -c "Hosting Admin User" -u 1000 -g users -G www-data -d /var/www/html -M lamp \ && sed -i -e 's/^mailhub=mail$/mailhub=smtp/' -e "s/^hostname=/#hostname=/" -e 's/#FromLineOverride=YES/FromLineOverride=YES/' /etc/ssmtp/ssmtp.conf @@ -12,7 +12,7 @@ RUN (cd / && patch -p0 ) < /tmp/sshd_config.patch && rm /tmp/sshd_config.patch EXPOSE 9000/tcp 22/tcp -RUN docker-php-ext-install -j$(nproc) pdo_mysql pdo_pgsql +RUN docker-php-ext-install -j$(nproc) pdo_mysql pdo_pgsql ldap RUN curl https://getcomposer.org/installer|php -- --install-dir=/usr/local/bin --filename=composer COPY start /usr/local/sbin diff --git a/sshd_config.patch b/sshd_config.patch old mode 100644 new mode 100755