From 3cbee31f01ea1def709e962237c29acaa5bd22b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=A4fer?= Date: Thu, 1 Nov 2018 16:05:29 +0100 Subject: [PATCH] Use commands that overwrite existing files For strange reasons, I could not `docker-compose up --build` because apoc plugin existed at the given location --- Dockerfile.neo4j | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.neo4j b/Dockerfile.neo4j index 3675669f6..880f0b117 100644 --- a/Dockerfile.neo4j +++ b/Dockerfile.neo4j @@ -1,3 +1,3 @@ FROM neo4j:3.4 -RUN mkdir /plugins && wget https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/3.4.0.3/apoc-3.4.0.3-all.jar -P /plugins - +RUN wget https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/3.4.0.3/apoc-3.4.0.3-all.jar +RUN mkdir -p /plugins && mv apoc-3.4.0.3-all.jar plugins/