12 lines
407 B
Docker
12 lines
407 B
Docker
FROM nextcloud:22.1.0-apache
|
|
|
|
COPY httpd/000-default.conf /etc/apache2/sites-available/000-default.conf
|
|
COPY supervisord/supervisord.conf /opt/supervisord.conf
|
|
|
|
# install cron
|
|
RUN apt-get update \
|
|
&& apt-get install -y supervisor libmagickcore-6.q16-6-extra \
|
|
&& mkdir /var/log/supervisord /var/run/supervisord \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
CMD ["/usr/bin/supervisord", "-c", "/opt/supervisord.conf"] |