2
0
Fork 0
mirror of https://github.com/friendica/docker synced 2025-01-07 18:52:39 +01:00
docker/.examples/dockerfiles/cron/apache/Dockerfile

17 lines
367 B
Text
Raw Normal View History

FROM friendica:apache
ENV AUTOINSTALL true
ENV MARIADB_VERSION 10.3
RUN set -ex; \
; \
apt-get update; \
apt-get install -y --no-install-recommends \
supervisor \
; \
rm -rf /var/lib/apt/lists/*; \
mkdir /var/log/supervisord /var/run/supervisord
COPY ./supervisord.conf /etc/supervisor/supervisord.conf
CMD ["/usr/bin/supervisord"]