2024-09-29 14:46:30 +02:00
|
|
|
FROM webdevops/php-apache:8.2
|
2020-07-20 17:25:01 +02:00
|
|
|
|
|
|
|
# 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
|
|
|
|
2020-08-01 16:35:11 +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
|
2020-07-20 17:25:01 +02:00
|
|
|
|
|
|
|
# export ports
|
|
|
|
EXPOSE 80 443
|