You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
588 B
33 lines
588 B
#On choisit une debian
|
|
FROM debian:latest
|
|
|
|
MAINTAINER DiouxX "github@diouxx.be"
|
|
|
|
#Ne pas poser de question à l'installation
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
#Installation d'apache et de php5 avec extension
|
|
RUN apt update \
|
|
&& apt -y install \
|
|
apache2 \
|
|
php \
|
|
php-mysql \
|
|
php-ldap \
|
|
php-xmlrpc \
|
|
php-imap \
|
|
curl \
|
|
php-curl \
|
|
php-gd \
|
|
php-mbstring \
|
|
php-xml \
|
|
php-apcu-bc \
|
|
wget
|
|
|
|
#Copie et execution du script pour l'installation et l'initialisation de GLPI
|
|
COPY glpi-start.sh /opt/
|
|
RUN chmod +x /opt/glpi-start.sh
|
|
ENTRYPOINT ["/opt/glpi-start.sh"]
|
|
|
|
#Exposition des ports
|
|
EXPOSE 80 443
|