2
0
Fork 0
mirror of https://github.com/friendica/docker synced 2024-05-31 03:38:18 +02:00
docker/.examples/dockerfiles/cron/apache/Dockerfile
Philipp Holzer b46fae9173
Change update & maintenance process
- Using 2018.05-rc as stable/productionin
- Using "update.sh" for creating the environments (single point of
change)
2018-05-24 21:20:25 +02:00

14 lines
325 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"]