mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
eb1e7b6088
This PR adds support for deploying Basic Memory on the Smithery platform. Signed-off-by: bm-claudeai <claude@basicmachines.co>
16 lines
455 B
Docker
16 lines
455 B
Docker
# 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"] |