Yuli Shlosberg | e11dc23 | 2018-01-29 16:19:52 +0200 | [diff] [blame] | 1 | FROM openjdk:8-jdk-alpine |
| 2 | |
Michael Lando | c789e6f | 2018-05-03 18:05:37 +0300 | [diff] [blame] | 3 | RUN apk add --no-cache py-pip && \ |
shrek2000 | c0e96b5 | 2019-10-29 09:38:53 +0200 | [diff] [blame^] | 4 | pip install cqlsh==5.0.4 && \ |
| 5 | mkdir ~/.cassandra/ && \ |
| 6 | echo '[cql]\n version=3.4.4' >> ~/.cassandra/cqlshrc && \ |
Michael Lando | c789e6f | 2018-05-03 18:05:37 +0300 | [diff] [blame] | 7 | set -ex && \ |
Tal Gitelman | d18094d | 2018-10-29 19:51:30 +0200 | [diff] [blame] | 8 | pip install cqlsh && \ |
Tal Gitelman | d18094d | 2018-10-29 19:51:30 +0200 | [diff] [blame] | 9 | apk add --no-cache \ |
| 10 | bash \ |
| 11 | build-base \ |
Tomasz Golabek | 8a3e3fc | 2019-06-14 15:41:22 +0200 | [diff] [blame] | 12 | ruby=2.5.5-r0 \ |
Tal Gitelman | d18094d | 2018-10-29 19:51:30 +0200 | [diff] [blame] | 13 | 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 Wu | f2da63d | 2018-05-07 17:21:22 -0700 | [diff] [blame] | 17 | apk update && \ |
Tal Gitelman | d18094d | 2018-10-29 19:51:30 +0200 | [diff] [blame] | 18 | apk add binutils \ |
| 19 | libtasn1 |
shrek2000 | c0e96b5 | 2019-10-29 09:38:53 +0200 | [diff] [blame^] | 20 | |