infra-oasis21/nextcloud/dockerfile

16 lines
331 B
Plaintext
Raw Normal View History

2023-09-21 15:49:15 +02:00
FROM nextcloud:25.0.8-apache
2022-07-12 12:20:42 +02:00
ARG VERSION
RUN apt-get update && apt-get install -y \
supervisor \
libmagickcore-6.q16-6-extra \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir /var/log/supervisord /var/run/supervisord
COPY supervisord.conf /
ENV NEXTCLOUD_UPDATE=1
CMD ["/usr/bin/supervisord", "-c", "/supervisord.conf"]