„Dockerfile“ löschen

master
Chris 2020-07-24 05:27:09 +00:00
parent 9f80f2ef9d
commit 76fa0fbbb4
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
FROM debian:buster
RUN apt-get update && apt-get install -y --fix-missing apache2 php php-cli php-xml php-mbstring ffmpeg wget && apt-get autoremove -y && rm -rf /var/lib/apt/lists/*
RUN a2enmod rewrite
RUN rm -r -f /var/www/html/*
RUN chown -R www-data:www-data /var/www/html
ENV APACHE_RUN_USER www-data
ENV APACHE_RUN_GROUP www-data
ENV APACHE_LOG_DIR /tmp
ENV APACHE_RUN_DIR .
ENV APACHE_PID_FILE /tmp/apache.pid
COPY index.php /var/www/html/index.php
EXPOSE 80
CMD ["/usr/sbin/apache2", "-D", "FOREGROUND"]