blob: 5ed1299fdf7c90a27cd26a37f177801222348811 [file] [log] [blame]
Yuli Shlosberge11dc232018-01-29 16:19:52 +02001FROM openjdk:8-jdk-alpine
2
Michael Landoc789e6f2018-05-03 18:05:37 +03003RUN apk add --no-cache py-pip && \
shrek2000c0e96b52019-10-29 09:38:53 +02004 pip install cqlsh==5.0.4 && \
5 mkdir ~/.cassandra/ && \
6 echo '[cql]\n version=3.4.4' >> ~/.cassandra/cqlshrc && \
Michael Landoc789e6f2018-05-03 18:05:37 +03007 set -ex && \
Tal Gitelmand18094d2018-10-29 19:51:30 +02008 pip install cqlsh && \
Tal Gitelmand18094d2018-10-29 19:51:30 +02009 apk add --no-cache \
10 bash \
11 build-base \
Tomasz Golabek8a3e3fc2019-06-14 15:41:22 +020012 ruby=2.5.5-r0 \
Tal Gitelmand18094d2018-10-29 19:51:30 +020013 ruby-dev \
14 libffi-dev \
15 libxml2-dev && \
16 gem install chef:13.8.5 berkshelf:6.3.1 io-console:0.4.6 etc webrick --no-document && \
Gary Wuf2da63d2018-05-07 17:21:22 -070017 apk update && \
Tal Gitelmand18094d2018-10-29 19:51:30 +020018 apk add binutils \
19 libtasn1
shrek2000c0e96b52019-10-29 09:38:53 +020020