aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-designer-init/src/main/docker/Dockerfile
blob: 1c46d95f8550e199ce6eaa79cc019b2525a840e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
FROM alpine:3.7

RUN apk add --no-cache 'python<3' py-pip
RUN pip install cqlsh==4.0.1

COPY create_workflow_db.cql .
COPY start.sh .

RUN chmod 744 start.sh

ENTRYPOINT ["./start.sh"]