summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authork.kedron <k.kedron@partner.samsung.com>2020-06-04 11:17:44 +0200
committerOfir Sonsino <ofir.sonsino@intl.att.com>2020-06-15 07:48:29 +0000
commit0e0dff07cf70588ef270e12e5ec43805c12daa4d (patch)
treec26f24fa26c5a0ced171d733eb12ff1b56e0acaf
parent4d19876e687e3c6bec24e967c2812a46669de94e (diff)
Update the base_sdc-python
To use the new integration-python base image. Issue-ID: SDC-2784 Signed-off-by: Krystian Kedron <k.kedron@partner.samsung.com> Change-Id: I84562747293c55ada644b20dc2b613212787efbd
-rw-r--r--base_sdc-python/Dockerfile24
-rw-r--r--base_sdc-python/requirements.txt2
2 files changed, 16 insertions, 10 deletions
diff --git a/base_sdc-python/Dockerfile b/base_sdc-python/Dockerfile
index d9dd3e5..57daaa9 100644
--- a/base_sdc-python/Dockerfile
+++ b/base_sdc-python/Dockerfile
@@ -1,4 +1,6 @@
-FROM python:2.7-alpine
+FROM nexus3.onap.org:10001/onap/integration-python:7.0.0
+
+USER root
# Needed for pycurl
ENV PYCURL_SSL_LIBRARY=openssl
@@ -8,26 +10,28 @@ RUN apk update && \
apk add binutils jq libpng && \
apk add --no-cache \
libcurl \
- curl \
jq \
- libressl-dev \
bash \
- ruby=2.6.6-r2 \
+ ruby=2.6.6-r2 && \
+ apk add --no-cache --virtual .build-dependencies \
+ libressl-dev \
ruby-dev \
libffi-dev \
- libxml2-dev && \
- apk add --no-cache --virtual .build-dependencies \
+ libxml2-dev \
build-base \
curl-dev && \
- pip install 'influxdb==5.0.0' 'pycurl==7.43.0.1' 'requests==2.18.4' && \
+ # needed libcurl to install correctly
+ pip install 'pycurl==7.43.0.1' && \
set -ex && \
gem install \
chef:13.8.5 \
berkshelf:6.3.1 \
io-console:0.4.6 \
etc webrick \
- --no-document
+ --no-document && \
+ apk del .build-dependencies
-RUN addgroup -g 1000 sdc && adduser -S -u 1000 -G sdc -s /bin/sh sdc
+# user/group are the same as in integration/docker/onap-python base image
+ENV user=onap group=onap
-USER sdc
+USER $user
diff --git a/base_sdc-python/requirements.txt b/base_sdc-python/requirements.txt
new file mode 100644
index 0000000..c33f61d
--- /dev/null
+++ b/base_sdc-python/requirements.txt
@@ -0,0 +1,2 @@
+influxdb==5.0.0
+requests==2.18.4 \ No newline at end of file