From a8b028c1e037a693c0dda0e889dc3e3977420c73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20MIELCAREK?= Date: Fri, 28 Oct 2022 23:17:45 +0200 Subject: [PATCH] Update 'Sources/Dockerfile' --- Sources/Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Sources/Dockerfile b/Sources/Dockerfile index 3a24ee9..5831fe1 100644 --- a/Sources/Dockerfile +++ b/Sources/Dockerfile @@ -1,2 +1,7 @@ FROM plugins/docker -CMD ["echo", "Hello world"] \ No newline at end of file +RUN apt update +RUN apt install –y apache2 +RUN apt install –y apache2-utils +RUN apt clean +EXPOSE 80 +CMD [“apache2ctl”, “-D”, “FOREGROUND”] \ No newline at end of file