2
0
Fork 0
mirror of https://github.com/friendica/docker synced 2024-05-31 03:38:18 +02:00
docker/.examples/dockerfiles/cron/fpm/Dockerfile

17 lines
371 B
Docker
Raw Normal View History

FROM friendica/server:fpm
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"]