From 03843621583a207d1458b24279f04edb0efa78fe Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Mon, 15 Jul 2019 22:53:09 +0200 Subject: [PATCH] Use alpine based nginx container Signed-off-by: Knut Ahlers --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index da319d4..e81e25f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -FROM nginx +FROM nginx:alpine -ADD nginx.conf /src/nginx.conf +COPY nginx.conf /src/nginx.conf ENTRYPOINT ["nginx", "-c", "/src/nginx.conf"]