php-apache-rsvg/Dockerfile
silson 9df7e677a2
All checks were successful
continuous-integration/drone/push Build is passing
Unnötige Schritte entfernt
2024-09-29 16:25:32 +02:00

17 lines
426 B
Docker

FROM webdevops/php-apache:8.2
# want rsvg support too
RUN apt-get update
RUN apt-get install -y librsvg2-bin
# and lilypond etc. to render notes/songs
RUN apt-get install -y lilypond
RUN apt-get install -y ffmpeg
RUN apt-get install -y fluidsynth
# 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
# export ports
EXPOSE 80 443