php-apache-rsvg/Dockerfile
silson f6bb1bf427
All checks were successful
continuous-integration/drone/push Build is passing
ffmpeg auch installieren
2024-09-14 11:33:32 +02:00

19 lines
459 B
Docker

FROM webdevops/php-apache:7.4
# want rsvg support too
RUN apt-get update
RUN apt-get install -y librsvg2-bin
# and lilypond to render notes/songs
RUN apt-get install -y lilypond
RUN apt-get install -y ffmpeg
# enable postfix to be able to send mails
RUN /opt/docker/bin/usr-bin/docker-service-enable postfix
RUN mkfifo /var/spool/postfix/public/pickup
RUN service postfix restart
#restart apache
RUN service apache2 restart
# export ports
EXPOSE 80 443