From 6dfad19a36034c7cc6361c2baed8a9a446975dc5 Mon Sep 17 00:00:00 2001 From: Dylan Pinn Date: Tue, 22 Jan 2019 12:03:46 +1100 Subject: [PATCH] Don't install recommended with python pip --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8d25d90..a9215f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN apt-get update && apt-get install -y wget --no-install-recommends \ && rm -rf /src/*.deb # Install AWS CLI -RUN apt-get update && apt-get install -y python-dev python-pip \ +RUN apt-get update && apt-get install -y python-dev python-pip --no-install-recommends \ && pip install awscli WORKDIR /workspace