2021-04-12 11:15:46 +00:00
|
|
|
FROM nextcloud:latest
|
2020-10-07 11:06:52 +00:00
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
supervisor \
|
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
|
|
&& mkdir /var/log/supervisord /var/run/supervisord
|
|
|
|
COPY supervisord.conf /
|
|
|
|
ENV NEXTCLOUD_UPDATE=1
|
2021-04-12 11:15:46 +00:00
|
|
|
CMD ["/usr/bin/supervisord", "-c", "/supervisord.conf"]
|