From d4cce87e91b96c5fc88e89eb13e596fffeb00666 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Fri, 26 Jul 2019 04:22:07 +0000 Subject: [PATCH 1/2] Bump neo4j from 3.5.5 to 3.5.8 in /neo4j Bumps neo4j from 3.5.5 to 3.5.8. Signed-off-by: dependabot-preview[bot] --- neo4j/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo4j/Dockerfile b/neo4j/Dockerfile index 2c106882f..3eb276d31 100644 --- a/neo4j/Dockerfile +++ b/neo4j/Dockerfile @@ -1,4 +1,4 @@ -FROM neo4j:3.5.5 +FROM neo4j:3.5.8 LABEL Description="Neo4J database of the Social Network Human-Connection.org with preinstalled database constraints and indices" Vendor="Human Connection gGmbH" Version="0.0.1" Maintainer="Human Connection gGmbH (developer@human-connection.org)" ARG BUILD_COMMIT From 423f7de40df45cc5af648a4c3de917119c6338d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=A4fer?= Date: Thu, 1 Aug 2019 13:44:17 +0200 Subject: [PATCH 2/2] Linux distro of neo4j image suddenly debian based So replace `apk` with `apt-get`... --- neo4j/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neo4j/Dockerfile b/neo4j/Dockerfile index 3eb276d31..56175e423 100644 --- a/neo4j/Dockerfile +++ b/neo4j/Dockerfile @@ -4,8 +4,8 @@ LABEL Description="Neo4J database of the Social Network Human-Connection.org wit ARG BUILD_COMMIT ENV BUILD_COMMIT=$BUILD_COMMIT -RUN wget https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/3.5.0.1/apoc-3.5.0.1-all.jar -P plugins/ -RUN apk add --no-cache --quiet procps COPY db_setup.sh /usr/local/bin/db_setup COPY entrypoint.sh /docker-entrypoint-wrapper.sh +RUN apt-get update && apt-get -y install procps wget +RUN wget https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/3.5.0.4/apoc-3.5.0.4-all.jar -P plugins/ ENTRYPOINT ["/docker-entrypoint-wrapper.sh"]