2017-07-12 12:08:50 +00:00
|
|
|
FROM nextcloud:apache
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
2018-01-30 12:40:15 +00:00
|
|
|
supervisor \
|
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
|
|
&& mkdir /var/log/supervisord /var/run/supervisord
|
2017-07-12 12:08:50 +00:00
|
|
|
|
|
|
|
COPY supervisord.conf /etc/supervisor/supervisord.conf
|
|
|
|
|
2018-10-16 14:38:04 +00:00
|
|
|
ENV NEXTCLOUD_UPDATE=1
|
|
|
|
|
2017-07-12 12:08:50 +00:00
|
|
|
CMD ["/usr/bin/supervisord"]
|