dl/Dockerfile

12 lines
399 B
Docker
Raw Normal View History

2017-11-06 19:32:14 +01:00
ARG VERSION=latest
FROM "registry.cabillot.eu/www/phpapache":${VERSION}
MAINTAINER "Julien Cabillot <dockerimages@cabillot.eu>"
2017-10-31 13:22:54 +00:00
2017-11-06 19:32:14 +01:00
RUN apt-get update && \
apt-get -y install libpng12-dev git && \
2017-10-31 13:22:54 +00:00
docker-php-ext-install gd && \
apt-get clean all && \
a2enmod headers && \
2017-11-06 19:32:14 +01:00
rmdir "/var/www/html" && \
git clone "https://github.com/blueimp/jQuery-File-Upload.git" "/var/www/html"