php-apache-rsvg/Dockerfile

21 lines
493 B
Text
Raw Normal View History

2024-09-29 14:39:59 +02:00
FROM webdevops/php-apache:8.1
# want rsvg support too
RUN apt-get update
2020-10-22 06:44:37 +02:00
RUN apt-get install -y librsvg2-bin
# and lilypond to render notes/songs
RUN apt-get install -y lilypond
2024-09-14 11:33:32 +02:00
RUN apt-get install -y ffmpeg
2024-09-14 12:38:25 +02:00
RUN apt-get install -y fluidsynth
# enable postfix to be able to send mails
2020-08-03 21:52:45 +02:00
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