From 9fed22b7b79e490c59abff05a9f851a0ef80a1be Mon Sep 17 00:00:00 2001 From: hariputhalapattu <134632151+hariputhalapattu@users.noreply.github.com> Date: Fri, 24 Oct 2025 17:58:46 +0200 Subject: [PATCH] Create Dockerfile --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..e7a6ef270 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM devopsedu/webapp +COPY . /var/www/html/ +EXPOSE 80 +CMD ["apache2ctl", "-D", "FOREGROUND"]