|
|
@ -9,11 +9,14 @@ RUN sed -i'' 's/^Listen 80$/Listen 8080/' "/etc/apache2/ports.conf" && \ |
|
|
docker-php-ext-install gd && \ |
|
|
docker-php-ext-install gd && \ |
|
|
apt-get clean all && \ |
|
|
apt-get clean all && \ |
|
|
a2enmod headers && \ |
|
|
a2enmod headers && \ |
|
|
rm -rf "/var/www/html" && \ |
|
|
|
|
|
git clone "https://github.com/blueimp/jQuery-File-Upload.git" "html" && \ |
|
|
|
|
|
rm -rf "/usr/share/doc/*" \ |
|
|
rm -rf "/usr/share/doc/*" \ |
|
|
"/var/cache/*" \ |
|
|
|
|
|
"/var/lib/apt/lists/*" |
|
|
|
|
|
|
|
|
"/var/cache/*" \ |
|
|
|
|
|
"/var/lib/apt/lists/*" \ |
|
|
|
|
|
"/usr/src/*" \ |
|
|
|
|
|
"/var/cache/*" \ |
|
|
|
|
|
"/var/log/"{apt/*,dpkg.log} \ |
|
|
|
|
|
"/var/www/html" && \ |
|
|
|
|
|
git clone "https://github.com/blueimp/jQuery-File-Upload.git" "html" |
|
|
|
|
|
|
|
|
RUN chown -R "www-data":"www-data" "/var/www/html" |
|
|
RUN chown -R "www-data":"www-data" "/var/www/html" |
|
|
|
|
|
|
|
|
|