mirror of
https://github.com/friendica/docker
synced 2025-01-24 03:47:32 +01:00
Philipp Holzer
e92023d702
Until https://github.com/docker-library/official-images/pull/4375 is merged.
17 lines
No EOL
374 B
Docker
17 lines
No EOL
374 B
Docker
FROM friendica/server: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"] |