Skip to content
Permalink
9d60e49744
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
20 lines (16 sloc) 587 Bytes
FROM ubuntu:bionic
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get -y install python3-pip
RUN apt-get -y install apache2
RUN apt-get -y install libapache2-mod-php
RUN apt-get -y install net-tools
RUN apt-get -y install python3
COPY app /root/app/
COPY web /var/www/html/
RUN sed -i -e 's/AllowOverride None/AllowOverride All/g' /etc/apache2/apache2.conf
RUN sed -i -e 's/Require all denied/Require all granted/g' /etc/apache2/apache2.conf
#RUN chmod u+x /root/app/starter.sh
#CMD ["/root/app/starter.sh"]
RUN chmod u+x /root/app/wydah.py
CMD ["/root/app/wydah.py"]