diff options
author | Yuli Shlosberg <ys9693@att.com> | 2018-02-20 16:04:23 +0200 |
---|---|---|
committer | Michael Lando <ml636r@att.com> | 2018-02-20 14:16:12 +0000 |
commit | a330c3763ca325fce0d0bc0debf81486ad4de66b (patch) | |
tree | 542d6378c2679409fad60fe09c4a2ded34e9a610 /base_sdc-python/Dockerfile | |
parent | f7582d429156bb810986eff3fc67c90e095b069f (diff) |
new python base
Change-Id: Iafdb86c376dbdf358d576a880d59c3ae1eef0cf2
Issue-ID: SDC-920
Signed-off-by: Yuli Shlosberg <ys9693@att.com>
Diffstat (limited to 'base_sdc-python/Dockerfile')
-rw-r--r-- | base_sdc-python/Dockerfile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/base_sdc-python/Dockerfile b/base_sdc-python/Dockerfile new file mode 100644 index 0000000..fde88c0 --- /dev/null +++ b/base_sdc-python/Dockerfile @@ -0,0 +1,27 @@ +FROM openjdk:8-jdk-alpine + +ARG HTTP_PROXY +ARG HTTPS_PROXY + +ENV HTTP_PROXY ${HTTP_PROXY} +ENV HTTPS_PROXY ${HTTPS_PROXY} + +RUN if [ ! -z ${HTTP_PROXY} ]; then echo "Acquire::http::proxy \"${HTTP_PROXY}\";" >> /etc/apt/apt.conf; fi +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 + +# Install packages only needed for building +RUN apk add --no-cache --virtual .build-dependencies build-base curl-dev + +# Needed for pycurl +ENV PYCURL_SSL_LIBRARY=openssl + +# Pip stuff +RUN pip install influxdb pycurl requests + +# Install Chef +RUN set -ex && \ + apk add --no-cache bash build-base ruby ruby-dev libffi-dev libxml2-dev && \ + gem install chef berkshelf io-console --no-document |