Recette pour la création de l'image basée sur blueimp/jQuery-File-Upload
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

13 lines
436 B

ARG VERSION=latest
FROM "registry.cabillot.eu/www/phpapache":${VERSION}
MAINTAINER "Julien Cabillot <dockerimages@cabillot.eu>"
# Nécessaire pour le git clone plus loin
WORKDIR "/var/www"
RUN apt-get update && \
apt-get -y install libpng12-dev git && \
docker-php-ext-install gd && \
apt-get clean all && \
rmdir "/var/www/html" && \
git clone "https://github.com/blueimp/jQuery-File-Upload.git" "/var/www/html"