From e97cc0d228fc014f264a4f31ce4d66e522151ebe Mon Sep 17 00:00:00 2001 From: alex Date: Wed, 12 Nov 2025 09:29:28 -0600 Subject: [PATCH 1/2] patch cypher --- servers/mcp-neo4j-cypher/CHANGELOG.md | 1 + servers/mcp-neo4j-cypher/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/servers/mcp-neo4j-cypher/CHANGELOG.md b/servers/mcp-neo4j-cypher/CHANGELOG.md index cb87350d..9f81a781 100644 --- a/servers/mcp-neo4j-cypher/CHANGELOG.md +++ b/servers/mcp-neo4j-cypher/CHANGELOG.md @@ -1,6 +1,7 @@ ## Next ### Fixed +* Fix bug in Dockerfile where build would fail due to `LABEL` statement coming before `FROM` statement ### Changed diff --git a/servers/mcp-neo4j-cypher/Dockerfile b/servers/mcp-neo4j-cypher/Dockerfile index cc936d96..a981cd96 100644 --- a/servers/mcp-neo4j-cypher/Dockerfile +++ b/servers/mcp-neo4j-cypher/Dockerfile @@ -1,7 +1,7 @@ -LABEL io.modelcontextprotocol.server.name="io.github.neo4j-contrib/mcp-neo4j-cypher" - FROM python:3.11-slim +LABEL io.modelcontextprotocol.server.name="io.github.neo4j-contrib/mcp-neo4j-cypher" + # Set working directory WORKDIR /app From 3f2421b53349f1f4b1a06199ebb0c016c7c72277 Mon Sep 17 00:00:00 2001 From: alex Date: Wed, 12 Nov 2025 09:30:10 -0600 Subject: [PATCH 2/2] patch data modeling, memory --- servers/mcp-neo4j-data-modeling/CHANGELOG.md | 1 + servers/mcp-neo4j-data-modeling/Dockerfile | 2 +- servers/mcp-neo4j-memory/CHANGELOG.md | 1 + servers/mcp-neo4j-memory/Dockerfile | 4 ++-- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/servers/mcp-neo4j-data-modeling/CHANGELOG.md b/servers/mcp-neo4j-data-modeling/CHANGELOG.md index 555355db..29bd879c 100644 --- a/servers/mcp-neo4j-data-modeling/CHANGELOG.md +++ b/servers/mcp-neo4j-data-modeling/CHANGELOG.md @@ -1,6 +1,7 @@ ## Next ### Fixed +* Fix bug in Dockerfile where build would fail due to `LABEL` statement coming before `FROM` statement ### Changed diff --git a/servers/mcp-neo4j-data-modeling/Dockerfile b/servers/mcp-neo4j-data-modeling/Dockerfile index 8dc3afbe..86db3dc5 100644 --- a/servers/mcp-neo4j-data-modeling/Dockerfile +++ b/servers/mcp-neo4j-data-modeling/Dockerfile @@ -1,5 +1,5 @@ -LABEL io.modelcontextprotocol.server.name="io.github.neo4j-contrib/mcp-neo4j-data-modeling" FROM python:3.12-slim +LABEL io.modelcontextprotocol.server.name="io.github.neo4j-contrib/mcp-neo4j-data-modeling" # Set working directory WORKDIR /app diff --git a/servers/mcp-neo4j-memory/CHANGELOG.md b/servers/mcp-neo4j-memory/CHANGELOG.md index 11c6381a..83035606 100644 --- a/servers/mcp-neo4j-memory/CHANGELOG.md +++ b/servers/mcp-neo4j-memory/CHANGELOG.md @@ -1,6 +1,7 @@ ## Next ### Fixed +* Fix bug in Dockerfile where build would fail due to `LABEL` statement coming before `FROM` statement ### Changed diff --git a/servers/mcp-neo4j-memory/Dockerfile b/servers/mcp-neo4j-memory/Dockerfile index be956af6..46521b3b 100644 --- a/servers/mcp-neo4j-memory/Dockerfile +++ b/servers/mcp-neo4j-memory/Dockerfile @@ -1,6 +1,6 @@ -LABEL io.modelcontextprotocol.server.name="io.github.neo4j-contrib/mcp-neo4j-memory" +FROM python:3.12-slim -FROM python:3.11-slim +LABEL io.modelcontextprotocol.server.name="io.github.neo4j-contrib/mcp-neo4j-memory" # Set working directory WORKDIR /app