Initial commit, 23.0.0

This commit is contained in:
Jarno Rankinen 2022-07-31 22:15:06 +03:00
parent 1918eadd50
commit d1bef6e146
1 changed files with 16 additions and 0 deletions

16
Dockerfile Normal file
View File

@ -0,0 +1,16 @@
FROM docker.io/library/nextcloud:23.0.0
RUN apt-get update &&\
apt-get install -y \
supervisor \
ffmpeg \
libmagickcore-6.q16-6-extra &&\
rm -rf /var/lib/apt/lists/* &&\
mkdir /var/log/supervisord /var/run/supervisord
COPY supervisord.conf /
COPY apache2.conf /etc/apache2/
ENV NEXTCLOUD_UPDATE=1
CMD ["/usr/bin/supervisord", "-c", "/supervisord.conf"]