diff options
author | Yuli Shlosberg <ys9693@att.com> | 2018-02-20 16:40:46 +0200 |
---|---|---|
committer | Yuli Shlosberg <ys9693@att.com> | 2018-02-20 16:41:30 +0200 |
commit | ccba15abde18722d20e89f0aa471c72ac684a3fc (patch) | |
tree | a82874a67359bdb06029a978323b62e36cb54439 /base_sdc-python | |
parent | a330c3763ca325fce0d0bc0debf81486ad4de66b (diff) |
fix python base docker
Change-Id: I9bc8dc23ff3b3fa2e2c29336c0e17d4e9612214d
Issue-ID: SDC-920
Signed-off-by: Yuli Shlosberg <ys9693@att.com>
Diffstat (limited to 'base_sdc-python')
-rw-r--r-- | base_sdc-python/Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/base_sdc-python/Dockerfile b/base_sdc-python/Dockerfile index fde88c0..27e03d4 100644 --- a/base_sdc-python/Dockerfile +++ b/base_sdc-python/Dockerfile @@ -10,7 +10,10 @@ RUN if [ ! -z ${HTTP_PROXY} ]; then echo "Acquire::http::proxy \"${HTTP_PROXY}\ RUN if [ ! -z ${HTTPS_PROXY} ]; then echo "Acquire::https::proxy \"${HTTPS_PROXY}\";" >> /etc/apt/apt.conf; fi # Install packages -RUN apk add --no-cache libcurl curl jq +RUN apk add --no-cache \ +libcurl\ +curl\ +jq # Install packages only needed for building RUN apk add --no-cache --virtual .build-dependencies build-base curl-dev |