mirror of
https://github.com/friendica/docker
synced 2025-01-09 07:55:38 +01:00
Philipp Holzer
fec33c98be
- 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
14 lines
No EOL
323 B
Docker
14 lines
No EOL
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"] |