php-apache-rsvg/Dockerfile

12 lines
181 B
Docker
Raw Normal View History

FROM webdevops/php-apache:7.4
# want rsvg support too
RUN apt-get update
RUN apt-get install -y librsvg
#restart apache
RUN service apache2 restart
# export ports
EXPOSE 80 443