From b7ff4c16c6b4df391c5726172a873668c68ed0e4 Mon Sep 17 00:00:00 2001 From: Giovanni Rosa Date: Fri, 14 Apr 2023 00:50:04 +0200 Subject: [PATCH] Fix for Dockerfile smell DL3015 Signed-off-by: Giovanni Rosa --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e298d38..9c38d76 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,14 @@ FROM ubuntu:16.04 RUN apt-get update && \ - apt-get install -y \ + apt-get install --no-install-recommends -y \ git \ pkg-config \ software-properties-common \ wget RUN add-apt-repository ppa:deadsnakes/ppa && \ apt-get update && \ - apt-get install -y \ + apt-get install --no-install-recommends -y \ python2.7 \ python2.7-dev \ python3.4 \