php-apache-rsvg/Dockerfile

12 lines
186 B
Docker
Raw Normal View History

FROM webdevops/php-apache:7.4
# want rsvg support too
RUN apt-get update
2020-07-20 17:30:38 +02:00
RUN apt-get install -y librsvg2-bin
#restart apache
RUN service apache2 restart
# export ports
EXPOSE 80 443