Skip to content
Snippets Groups Projects
Select Git revision
  • d035cda972b2ee4dc564448f536a712486514d3a
  • master default protected
  • release_3.0.0
  • test
  • feature_pre_sql
  • develop
  • 3.0.1
  • 3.0.0
  • 2.3.0
  • 2.2.0
  • 2.1.0
  • 2.0.0
  • 1.3.7
  • 1.3.6
  • 1.3.5
  • 1.3.4
  • 1.3.3
  • 1.3.2
  • 1.3.1
  • 1.3.0
  • 1.2.6
  • 1.2.5
  • 1.2.4
  • 1.2.3
  • 1.2.2
  • 1.2.1
26 results

Dockerfile.php7.dev

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile.php7.dev 2.59 KiB
    ###########################################################################################
    #
    #                               Image pour le dev.
    #
    #         Montage des sources attendu dans le volume "/webapp" du container.
    #
    ###########################################################################################
    
    FROM php:7-apache
    
    LABEL maintainer="Bertrand GAUTHIER <bertrand.gauthier at unicaen.fr>"
    
    # Mise à niveau de la distrib.
    RUN apt-get update && apt-get install -y \
            git \
            libaio1 \
            libcurl4-openssl-dev \
            libfreetype6-dev \
            libicu-dev \
            libjpeg62-turbo-dev \
            libldap2-dev \
            libmcrypt-dev \
            libssl-dev \
            libxml2-dev \
            make \
            netcat-openbsd \
            subversion \
            unzip \
            vim \
            wget \
            zlib1g-dev \
        && docker-php-ext-install -j$(nproc) iconv gettext gd soap curl intl zip \
        && docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu && docker-php-ext-install ldap \
        && rm -rf /var/lib/apt/lists/*
    
    # Installation d'extensions PECL
    RUN pear config-set http_proxy "$HTTP_PROXY" && \
        pecl install xdebug && docker-php-ext-enable xdebug
    
    # Package PHP Oracle OCI8
    ADD docker/instantclient-basiclite-linux.x64-12.2.0.1.0.zip /tmp/
    ADD docker/instantclient-sdk-linux.x64-12.2.0.1.0.zip /tmp/
    ADD docker/instantclient-sqlplus-linux.x64-12.2.0.1.0.zip /tmp/
    RUN unzip /tmp/instantclient-basiclite-linux.x64-12.2.0.1.0.zip -d /usr/local/ && \
        unzip /tmp/instantclient-sdk-linux.x64-12.2.0.1.0.zip -d /usr/local/ && \
        unzip /tmp/instantclient-sqlplus-linux.x64-12.2.0.1.0.zip -d /usr/local/ && \
        ln -s /usr/local/instantclient_12_2 /usr/local/instantclient && \
        ln -s /usr/local/instantclient/libclntsh.so.12.1 /usr/local/instantclient/libclntsh.so && \
        ln -s /usr/local/instantclient/sqlplus /usr/bin/sqlplus && \
        echo 'export LD_LIBRARY_PATH="/usr/local/instantclient"' >> /etc/apache2/envvars && \
        echo 'export LD_LIBRARY_PATH="/usr/local/instantclient"' >> /root/.bashrc && \
        echo 'umask 002' >> /root/.bashrc && \
        echo 'instantclient,/usr/local/instantclient' | pecl install oci8 && \
        echo "extension=oci8.so" > /usr/local/etc/php/conf.d/php-oci8.ini
    
    # Config PHP.
    ADD docker/php.conf /usr/local/etc/php/conf.d/webapp.ini
    
    # Configuration et activation du site Apache
    ADD docker/apache.conf /etc/apache2/sites-available/webapp.conf
    ADD docker/ports.conf /etc/apache2/ports.conf
    RUN a2enmod rewrite && a2ensite webapp
    
    # Install Composer.
    RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer