sheetalm | aafdcc2 | 2018-04-18 11:21:26 +0530 | [diff] [blame] | 1 | FROM alpine:3.7 |
sheetalm | ed12890 | 2018-03-13 19:32:08 +0530 | [diff] [blame] | 2 | |
sheetalm | aafdcc2 | 2018-04-18 11:21:26 +0530 | [diff] [blame] | 3 | RUN apk add --no-cache 'python<3' py-pip && pip install cqlsh==4.0.1 |
4 | |||||
5 | ENV CASSANDRA_PORT=9160 | ||||
sheetalm | ed12890 | 2018-03-13 19:32:08 +0530 | [diff] [blame] | 6 | |
7 | COPY create_activityspec_db.cql . | ||||
8 | COPY start.sh . | ||||
9 | |||||
10 | RUN chmod 744 start.sh | ||||
11 | |||||
sheetalm | aafdcc2 | 2018-04-18 11:21:26 +0530 | [diff] [blame] | 12 | ENTRYPOINT ["./start.sh"] |