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 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