Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM python:2.7-alpine3.8
FROM python:2.7

WORKDIR /scripts

ENV CQLVERSION="3.4.4" \
ENV CQLVERSION="3.4.6" \
CQLSH_HOST="cassandra" \
CQLSH_PORT="9042"

RUN pip install -Ivq cqlsh==5.0.4 \
&& apk add --no-cache bash \
RUN pip install -Ivq cqlsh==6.0.0 \
pip install futures \
&& echo 'alias cqlsh="cqlsh --cqlversion ${CQLVERSION} $@"' >> /.bashrc \
&& mkdir /.cassandra

Expand Down