build,circleci: add curl & wget to base image

curl was present in latest image but seems to have been remove from latest debian:9

Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
This commit is contained in:
Etienne Champetier
2018-11-24 20:45:04 -05:00
parent e792bbd84e
commit c3c3252ab5
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -2,6 +2,7 @@ FROM debian:9
RUN apt update && apt install -y \
build-essential \
curl \
jq \
gawk \
gettext \
@@ -11,6 +12,7 @@ libssl-dev \
python \
subversion \
time \
wget \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*