From c24559a45c5ae165074602adae3fa891935d8d6a Mon Sep 17 00:00:00 2001 From: Brian Flad Date: Wed, 17 May 2017 21:24:14 -0400 Subject: [PATCH] Use Alpine Linux and disable pip cache to reduce image size --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 610887e..9991ee1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -FROM python:3.6.1 +FROM python:3.6.1-alpine -RUN pip install gixy +RUN pip --no-cache-dir install gixy ENTRYPOINT ["gixy"]