diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..bd4a81f61 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM ubuntu +RUN apt update +RUN apt install apache2 -y +Add . /var/www/html/ +ENTRYPOINT apachectl -D FOREGROUND diff --git a/Dockerfile 1 b/Dockerfile 1 new file mode 100644 index 000000000..5f7466b9b --- /dev/null +++ b/Dockerfile 1 @@ -0,0 +1,2 @@ +FROM ubuntu/apache2 +COPY . /var/www/html diff --git a/index.html b/index.html index 19c25caa0..bc64c5efa 100644 --- a/index.html +++ b/index.html @@ -3,6 +3,6 @@ Intellipaat -

Hello world!

+

Hello world from master!