From fc9dde8b3e1a9dbaf77a70973fe6ea77bd0c0dfd Mon Sep 17 00:00:00 2001 From: Martin Bhuong Date: Sun, 17 Mar 2024 20:13:51 +0100 Subject: [PATCH] update commnets to english --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3c536b5..d69655b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ -# On choisit une debian +# Choose a debian FROM debian:12.0 LABEL org.opencontainers.image.authors="github@genius.ke" -# Ne pas poser de question à l'installation +# Do not ask questions during installation ENV DEBIAN_FRONTEND noninteractive -# Installation d'apache et de php8.1 avec extension +# Install apache and php8.1 with extensions RUN apt update \ && apt install --yes ca-certificates apt-transport-https lsb-release wget curl \ && curl -sSLo /usr/share/keyrings/deb.sury.org-php.gpg https://packages.sury.org/php/apt.gpg \ @@ -37,10 +37,10 @@ libsasl2-modules \ libsasl2-modules-db \ && rm -rf /var/lib/apt/lists/* -# Copie et execution du script pour l'installation et l'initialisation de GLPI +# Copy and execute the script for GLPI installation and initialization RUN LOGS="install_glpi.log" \ && echo "====================================================" >> $LOGS \ -&& echo "## VARIAVEIS" >> $LOGS \ +&& echo "## VARIABLES" >> $LOGS \ && echo "====================================================" >> $LOGS \ && echo "Remove old PHP..." \ && yum -y remove \ @@ -116,5 +116,5 @@ RUN LOGS="install_glpi.log" \ && pkill -9 apache \ && /usr/sbin/apache2ctl -D FOREGROUND -# Exposition des ports +# Expose ports EXPOSE 80 443