diff --git a/Dockerfile b/Dockerfile index 859132c..5fad0fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,12 @@ -FROM debian:testing -RUN apt update -y && apt install -y --no-install-recommends apache2 php libapache2-mod-php sqlite3 php-sqlite3 && \ +FROM debian:11 +RUN apt update -y && apt install -y --no-install-recommends openssl apache2 php libapache2-mod-php sqlite3 php-sqlite3 && \ apt clean && \ rm -rf /var/lib/apt/lists/* && \ mkdir -p /etc/postfix/ && \ -rm /var/www/html/index.html +rm /var/www/html/index.html && \ +openssl req -x509 -nodes -days 5000 -newkey rsa:4096 -out /etc/ssl/certs/ssl-cert-snakeoil.pem -keyout /etc/ssl/private/ssl-cert-snakeoil.key -subj "/C=FR/ST=Paris/L=Paris/O=Courtail/OU=Courtail/CN=127.0.0.1" && \ +a2enmod ssl && \ +a2ensite default-ssl.conf COPY . /var/www/html/ RUN mv /var/www/html/outils/conf/php.ini /etc/php/7.4/apache2 && \ mv /var/www/html/outils/conf/apache2.conf /etc/apache2/ && \ diff --git a/outils/rundocker.sh b/outils/rundocker.sh index dab684a..c36a413 100755 --- a/outils/rundocker.sh +++ b/outils/rundocker.sh @@ -1,3 +1,5 @@ #!/bin/sh -docker build -t courtail ../ -docker run -it -p 8080:80 courtail:latest + +dockerfile="$(dirname ${0})/../" +docker build -t courtail "${dockerfile}" +docker run -it -p 8080:80 -p 4443:443 courtail:latest \ No newline at end of file