From 116619dfdb376f6bb1a175d181eeceb24e05c501 Mon Sep 17 00:00:00 2001 From: "smithery-ai[bot]" <194235850+smithery-ai[bot]@users.noreply.github.com> Date: Tue, 11 Mar 2025 19:12:38 +0000 Subject: [PATCH] Add Dockerfile --- Dockerfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..ce7c2fea --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile +FROM python:3.12-slim + +WORKDIR /app + +# Copy the project files +COPY . . + +# Install pip and build dependencies +RUN pip install --upgrade pip \ + && pip install . --no-cache-dir --ignore-installed + +# Expose port if necessary (e.g., uv might use a port, but MCP over stdio so not needed here) + +# Use the basic-memory entrypoint to run the MCP server +CMD ["basic-memory", "mcp"]