Update Dockerfile

This commit is contained in:
2021-06-04 21:13:21 +02:00
committed by GitHub
parent ff6d743c49
commit acb349a932
+2 -2
View File
@@ -4,8 +4,8 @@ MAINTAINER Daniel Dolezal <daniel156161@protonmail.com>
ENV TZ=Europe/Vienna
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get update && apt-get install -y software-properties-common && apt-add-repository universe
RUN apt-get update && apt-get install -y apache2 php php-mysql apt-utils tzdata nano && apt-get clean
RUN apt-get update && apt-get install -y software-properties-common && apt-add-repository universe && add-apt-repository ppa:ondrej/php
RUN apt-get update && apt-get install -y apache2 php8.0 libapache2-mod-php8.0 php8.0-mysql apt-utils tzdata nano && apt-get clean
ENV APACHE_RUN_USER www-data
ENV APACHE_RUN_GROUP www-data