infra-oasis21/nextcloud/dockerfile

16 lines
332 B
Plaintext
Raw Normal View History

2024-02-16 22:32:36 +01:00
FROM nextcloud:26.0.11-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"]