We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2b4e2f commit df2fa26Copy full SHA for df2fa26
1 file changed
Dockerfile
@@ -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