Skip to content

Commit b8cdd1b

Browse files
authored
update cypher mcp docker file (#126)
add make command to shortcut local build, hopefully this fixes the docker hub issue...
1 parent 95a9985 commit b8cdd1b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

servers/mcp-neo4j-cypher/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ ENV NEO4J_MCP_SERVER_PATH="/api/mcp/"
3232
EXPOSE 8000
3333

3434
# Command to run the server using the package entry point
35-
CMD ["mcp-neo4j-cypher"]
35+
CMD ["sh", "-c", "mcp-neo4j-cypher"]

servers/mcp-neo4j-cypher/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,8 @@ test-http:
1313
test-all:
1414
uv run pytest tests/ -v
1515

16+
docker-build-deploy-local:
17+
docker build -t mcp-neo4j-cypher:dev-latest .
18+
docker run -p 8000:8000 mcp-neo4j-cypher:dev-latest
19+
1620
all: install-dev test-all

0 commit comments

Comments
 (0)