repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 |
| FROM python:3.12-slim |
| #2 |
| #3 | LABEL org.opencontainers.image.name="mem0/openmemory-mcp" |
| #4 |
| #5 | WORKDIR /usr/src/openmemory |
| #6 |
| #7 | COPY requirements.txt . |
| #8 | RUN pip install -r requirements.txt |
| #9 |
| #10 | COPY config.json . |
| #11 | COPY . . |
| #12 |
| #13 | EXPOSE 8765 |
| #14 | CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8765"] |
| #15 |