Ajout de l'initialisation de glpi et de fusioninventory au script d'init. Reste à tester et corriger la mise à jour

This commit is contained in:
root
2020-08-04 17:27:46 +02:00
parent 5073a9efa2
commit 9cda96d277
5 changed files with 51 additions and 9 deletions

View File

@ -2,6 +2,9 @@ FROM php:7.4-apache-buster
MAINTAINER Benoit LORAND <benoit.lorand@blorand.org>
WORKDIR /root
ENV GLPI_CONFIG_DIR=/etc/glpi
ENV GLPI_VAR_DIR=/var/lib/glpi
ENV GLPI_LOG_DIR=/var/log/glpi
RUN \
apt-get update && \
@ -15,6 +18,7 @@ apt-get install --no-install-recommends -y \
libicu-dev \
libpng-dev \
zlib1g-dev \
default-mysql-client \
&& \
pecl install apcu && docker-php-ext-enable apcu && \
docker-php-ext-configure mysqli && docker-php-ext-install mysqli && \