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/ && \ |
shrek2000 | 7adc378 | 2019-11-14 15:34:40 +0200 | [diff] [blame] | 6 | echo '[cql]' > ~/.cassandra/cqlshrc && \ |
| 7 | echo 'version=3.4.4' >> ~/.cassandra/cqlshrc && \ |
Michael Lando | c789e6f | 2018-05-03 18:05:37 +0300 | [diff] [blame] | 8 | set -ex && \ |
Tal Gitelman | d18094d | 2018-10-29 19:51:30 +0200 | [diff] [blame] | 9 | pip install cqlsh && \ |
Tal Gitelman | d18094d | 2018-10-29 19:51:30 +0200 | [diff] [blame] | 10 | apk add --no-cache \ |
| 11 | bash \ |
| 12 | build-base \ |
shrek2000 | 5ac4db0 | 2019-10-30 15:04:37 +0200 | [diff] [blame] | 13 | ruby=2.5.7-r0 \ |
Tal Gitelman | d18094d | 2018-10-29 19:51:30 +0200 | [diff] [blame] | 14 | ruby-dev \ |
| 15 | libffi-dev \ |
| 16 | libxml2-dev && \ |
| 17 | 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] | 18 | apk update && \ |
Tal Gitelman | d18094d | 2018-10-29 19:51:30 +0200 | [diff] [blame] | 19 | apk add binutils \ |
| 20 | libtasn1 |
shrek2000 | c0e96b5 | 2019-10-29 09:38:53 +0200 | [diff] [blame] | 21 | |