diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-07-05 23:15:50 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-07-05 23:15:50 +0200 |
commit | 378953256025cc185fd5fe49b9700adfa17f0702 (patch) | |
tree | 6cfde96c75856003174b7cdddc31afa4d95320aa /docker/nextcloud/Dockerfile | |
parent | 775bab3735c6d8ff650dbc8a96dbc0bb76586103 (diff) | |
parent | c344dacb65e967bef7a06e34adb02494d98cde77 (diff) | |
download | infrastructure-378953256025cc185fd5fe49b9700adfa17f0702.tar.gz infrastructure-378953256025cc185fd5fe49b9700adfa17f0702.zip |
Merge branch 'master' of git.deuxfleurs.fr:Deuxfleurs/deuxfleurs.fr
Diffstat (limited to 'docker/nextcloud/Dockerfile')
-rw-r--r-- | docker/nextcloud/Dockerfile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/docker/nextcloud/Dockerfile b/docker/nextcloud/Dockerfile new file mode 100644 index 0000000..9f817f6 --- /dev/null +++ b/docker/nextcloud/Dockerfile @@ -0,0 +1,27 @@ +FROM debian:10 + +RUN apt-get update && \ + apt-get -qq -y full-upgrade + +RUN apt-get install -y apache2 php php-gd php-mbstring php-pgsql php-curl php-dom php-xml php-zip \ + php-intl php-ldap php-fileinfo php-exif php-apcu php-redis php-imagick unzip curl wget && \ + phpenmod gd && \ + phpenmod curl && \ + phpenmod mbstring && \ + phpenmod pgsql && \ + phpenmod dom && \ + phpenmod zip && \ + phpenmod intl && \ + phpenmod ldap && \ + phpenmod fileinfo && \ + phpenmod exif && \ + phpenmod apcu && \ + phpenmod redis && \ + phpenmod imagick && \ + phpenmod xml + +COPY container-setup.sh /tmp +RUN /tmp/container-setup.sh + +COPY entrypoint.sh / +CMD /entrypoint.sh |