Use commands that overwrite existing files

For strange reasons, I could not `docker-compose up --build` because
apoc plugin existed at the given location
This commit is contained in:
Robert Schäfer 2018-11-01 16:05:29 +01:00
parent e1da9f1f90
commit 3cbee31f01

View File

@ -1,3 +1,3 @@
FROM neo4j:3.4 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/