Skip to content

Commit df2fa26

Browse files
committed
Add Dockerfile for Glama MCP server verification
1 parent f2b4e2f commit df2fa26

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Dockerfile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
FROM python:3.12-slim
2+
3+
WORKDIR /app
4+
5+
COPY pyproject.toml README.md ./
6+
COPY widemem/ widemem/
7+
8+
RUN pip install --no-cache-dir ".[mcp]"
9+
10+
ENV WIDEMEM_DATA_PATH=/data
11+
ENV WIDEMEM_LLM_PROVIDER=ollama
12+
ENV WIDEMEM_EMBEDDING_PROVIDER=sentence-transformers
13+
14+
VOLUME /data
15+
16+
ENTRYPOINT ["python", "-m", "widemem.mcp_server"]

0 commit comments

Comments
 (0)