2
0
Fork 0
mirror of https://github.com/friendica/docker synced 2024-05-24 22:24:57 +02:00
docker/.examples/dockerfiles/cron/apache/Dockerfile
Philipp Holzer fec33c98be
Bugfixings SMTP /
- changed sendmail to ssmtp support
- deleted smtp-examples (not necessary anymore)
- added vendor libraries in stable-docker images ("full" package)
- changed stack.yml to new SMTP behavior
2018-06-06 20:37:02 +02:00

14 lines
323 B
Docker

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