php-apache-rsvg/Dockerfile

18 lines
426 B
Text
Raw Permalink Normal View History

FROM webdevops/php-apache:8.2
# want rsvg support too
RUN apt-get update
2020-10-22 06:44:37 +02:00
RUN apt-get install -y librsvg2-bin
2024-09-29 16:25:32 +02:00
# and lilypond etc. to render notes/songs
2020-10-22 06:44:37 +02:00
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
2024-09-29 16:25:32 +02:00
# enable postfix to be able to send mails
2024-09-29 16:12:11 +02:00
RUN /opt/docker/bin/usr-bin/docker-service-enable postfix
RUN mkfifo /var/spool/postfix/public/pickup
# export ports
EXPOSE 80 443