diff options
-rw-r--r-- | pom.xml | 2 | ||||
-rw-r--r-- | workflow-designer-init/src/main/docker/Dockerfile | 3 |
2 files changed, 2 insertions, 3 deletions
@@ -72,7 +72,7 @@ <artifactId>docker-maven-plugin</artifactId> <version>0.28.0</version> <configuration> - <verbose>false</verbose> + <verbose>true</verbose> <registry>${nexus.registry}</registry> <authConfig> <pull> diff --git a/workflow-designer-init/src/main/docker/Dockerfile b/workflow-designer-init/src/main/docker/Dockerfile index 1c46d95f..75e7efdc 100644 --- a/workflow-designer-init/src/main/docker/Dockerfile +++ b/workflow-designer-init/src/main/docker/Dockerfile @@ -1,7 +1,6 @@ FROM alpine:3.7 -RUN apk add --no-cache 'python<3' py-pip -RUN pip install cqlsh==4.0.1 +RUN apk add --no-cache 'python<3' py-pip && pip install cqlsh==4.0.1 COPY create_workflow_db.cql . COPY start.sh . |