mirror of
https://github.com/friendica/docker
synced 2025-01-07 18:52:39 +01:00
17 lines
367 B
Text
17 lines
367 B
Text
|
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"]
|