„Dockerfile“ löschen
parent
9f80f2ef9d
commit
76fa0fbbb4
19
Dockerfile
19
Dockerfile
|
@ -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"]
|
|
Loading…
Reference in New Issue