From 0a29beff5c4e7ca35ba1be8eb21613fc142c9be2 Mon Sep 17 00:00:00 2001 From: Scott Hussey Date: Thu, 15 Jun 2017 17:11:30 -0500 Subject: [PATCH] Switch to 'apt' and remove duplicate package listing --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 28bdbb27..a2bac38d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,8 +16,8 @@ FROM ubuntu:16.04 ENV DEBIAN_FRONTEND noninteractive ENV container docker -RUN apt-get -qq update && \ - apt-get -y install git netbase python3-minimal python3-setuptools python3-pip python3-dev ca-certificates gcc gcc g++ make libffi-dev libssl-dev --no-install-recommends +RUN apt -qq update && \ + apt -y install git netbase python3-minimal python3-setuptools python3-pip python3-dev ca-certificates gcc g++ make libffi-dev libssl-dev --no-install-recommends # Need to configure proxies?