From 820fcfafd6f61c4aeb85e0434a0d8926c4420c40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20M=C3=B6ller?= Date: Mon, 8 Jul 2019 13:05:26 +0200 Subject: [PATCH] Create Dockerfile --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..651f58f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM nextcloud:stable + +RUN echo "deb http://deb.debian.org/debian stretch-backports main" > /etc/apt/sources.list.d/backports.list && apt update -y +RUN mkdir -p /usr/share/man/man1 +RUN apt install libreoffice libreoffice-l10n-de libreoffice-help-de -y +RUN apt install ffmpeg imagemagick ghostscript -y +RUN apt install p7zip p7zip-full -y + +WORKDIR /var/www/html +ENTRYPOINT ["/entrypoint.sh"] +CMD ["apache2-foreground"]