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