summaryrefslogtreecommitdiffstats
path: root/base_sdc-cqlsh
diff options
context:
space:
mode:
authorYuli Shlosberg <ys9693@att.com>2018-01-29 16:19:52 +0200
committerYuli Shlosberg <ys9693@att.com>2018-01-29 16:19:52 +0200
commite11dc23a5fd4dbcf38a5496f093be00e1d568217 (patch)
treeb854bc963eb738f775e0102f7988167e018d0059 /base_sdc-cqlsh
parent4764062e0382c65667e810f8008aa5f6d7272bea (diff)
new cqlsh base docker
Change-Id: I1d771f80e87eeeac55cfd0df55af011bee307753 Issue-ID: SDC-722 Signed-off-by: Yuli Shlosberg <ys9693@att.com>
Diffstat (limited to 'base_sdc-cqlsh')
-rw-r--r--base_sdc-cqlsh/Dockerfile20
1 files changed, 20 insertions, 0 deletions
diff --git a/base_sdc-cqlsh/Dockerfile b/base_sdc-cqlsh/Dockerfile
new file mode 100644
index 0000000..41daef7
--- /dev/null
+++ b/base_sdc-cqlsh/Dockerfile
@@ -0,0 +1,20 @@
+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
+
+RUN apk add --no-cache \
+ py-pip
+
+RUN pip install cqlsh==4.0.1
+
+# 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