Skip to content
Snippets Groups Projects
Select Git revision
  • cee10bc8b13aff83325baa9333a4d751c994d23f
  • master default protected
  • b24
  • ll-workflow
  • alc-scindage-donnees-pj
  • FJ_LL_Tbl_Contrat
  • alc-docker-node
  • ll-apiplatform
  • php84
  • ll-rgpd
  • b23
  • alc-filtre-type-intervenant
  • ll-sans-mdb5
  • formules-ancienne-infra
  • ll-formules
  • alc-intervenant-dmep
  • ll-suppr-v_vol-s
  • b20
  • ll-postgresql
  • b23.0.1
  • b22
  • 24.8
  • 24.7
  • 24.6
  • 24.5
  • 24.4
  • 24.3
  • 24.2
  • 24.1
  • 24.0
  • 23.15
  • 24.0-beta19
  • 24.0-beta18
  • 24.0-beta17
  • 24.0-beta16
  • 24.0-beta15
  • 24.0-beta14
  • 24.0-beta13
  • 23.14
  • 24.0-beta12
  • 24.0-beta11
41 results

doc.md

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