Unable to add PPA ondrejPHP in Dockerfile – Apache
I want to extend the httpd Image with PHP and some PHP Modules. My Dockerfile for this looks like this. FROM httpd:2.4 COPY forma.conf /etc/apache2/sites-available/ RUN apt-get update && apt-get install -y nano software-properties-common RUN LC_ALL=en_US.UTF-8 add-apt-repository ppa:ondrej/php RUN apt-get…