mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
3269a2f33a
Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com> Co-authored-by: phernandez <phernandez@users.noreply.github.com> Co-authored-by: Claude <noreply@anthropic.com>
13 lines
364 B
Docker
13 lines
364 B
Docker
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
|
|
|
|
# Use the basic-memory entrypoint to run the MCP server with default SSE transport
|
|
CMD ["basic-memory", "mcp", "--transport", "sse", "--host", "0.0.0.0", "--port", "8000"] |