From 5acd08fca3bca488c939f50ee1e5ebbee0ad9b6a Mon Sep 17 00:00:00 2001 From: Vamsi9999-psudo <79962177+Vamsi9999-psudo@users.noreply.github.com> Date: Mon, 2 Feb 2026 11:03:14 +0530 Subject: [PATCH 1/2] Update title and heading in index.html --- index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 19c25caa0..2c638bab6 100644 --- a/index.html +++ b/index.html @@ -1,8 +1,9 @@ - Intellipaat +Vamsi Jankins CI/CD Demo -

Hello world!

+

Welcome to Vamsi Devops Demo

+ From 4d90c1c329ccbc2619f42cf25aa025154f0ca632 Mon Sep 17 00:00:00 2001 From: Vamsi9999-psudo <79962177+Vamsi9999-psudo@users.noreply.github.com> Date: Mon, 9 Feb 2026 14:09:42 +0530 Subject: [PATCH 2/2] Create Dockerfile for Apache web server setup --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..0800c4d66 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM ubuntu +RUN apt-get update +RUN apt install apache2 -y +ADD index.html /var/www/html/ +ENTRYPOINT apachectl -D FOREGROUND