From 2238c78697aef0bbb7a10f8b72203118ea4919fc Mon Sep 17 00:00:00 2001 From: sdadanna <46990204+sdadanna@users.noreply.github.com> Date: Fri, 26 Apr 2024 09:13:32 +0530 Subject: [PATCH] Create Dockerfile --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..e96f2cd84 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM ubuntu +RUN apt update +RUN apt install apache2 -y +COPY index.html /var/www/html +ENTRYPOINT apachectl -D FOREGROUND