From e1e693956304dbab843de4f21ef920999c174ccb Mon Sep 17 00:00:00 2001 From: esgg Date: Tue, 22 Jan 2019 16:23:34 +0100 Subject: [PATCH] -y flag added to apt-get install python-dev command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ea20147..aa7846b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update # install python RUN apt-get install -y software-properties-common RUN python --version -RUN apt-get install python-dev +RUN apt-get install -y python-dev RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py RUN python get-pip.py RUN pip install -U pip