summaryrefslogtreecommitdiffstats
path: root/.examples/dockerfiles/cron/apache/Dockerfile
blob: 85445b54939a920c6285ea2275314e3ff2991747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM nextcloud:apache

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 /etc/supervisor/supervisord.conf

ENV NEXTCLOUD_UPDATE=1

CMD ["/usr/bin/supervisord"]