diff --git a/Dockerfile b/Dockerfile index 9e9651951..ec66e0eb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,13 +13,9 @@ RUN apt-get update # Usage: Installing dependencies for computer graphics lab RUN apt-get install -y make php5 apache2 rsync gcc g++ libapache2-mod-python libapache2-mod-wsgi -RUN sed -i '/<\/VirtualHost>/i \ - \ - AddHandler mod_python .py \ - PythonHandler mod_python.publisher \ - PythonDebug On \ - \ -' /etc/apache2/sites-available/default +COPY scripts/configure.sh . +RUN chmod 777 ./configure.sh +RUN sh configure.sh RUN mkdir /problem-solving-iiith