mirror of
https://github.com/friendica/docker
synced 2025-01-07 18:52:39 +01:00
Philipp Holzer
b46fae9173
- Using 2018.05-rc as stable/productionin - Using "update.sh" for creating the environments (single point of change)
14 lines
No EOL
322 B
Docker
14 lines
No EOL
322 B
Docker
FROM friendica/server:fpm
|
|
|
|
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"] |