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 |
| #2 |
| #3 | WORKDIR /app |
| #4 |
| #5 | # Install Poetry |
| #6 | RUN curl -sSL https://install.python-poetry.org | python3 - |
| #7 | ENV PATH="/root/.local/bin:$PATH" |
| #8 |
| #9 | # Copy requirements first for better caching |
| #10 | COPY server/requirements.txt . |
| #11 | RUN pip install -r requirements.txt |
| #12 |
| #13 | # Install mem0 in editable mode using Poetry |
| #14 | WORKDIR /app/packages |
| #15 | COPY pyproject.toml . |
| #16 | COPY poetry.lock . |
| #17 | COPY README.md . |
| #18 | COPY mem0 ./mem0 |
| #19 | RUN pip install -e .[graph] |
| #20 |
| #21 | # Return to app directory and copy server code |
| #22 | WORKDIR /app |
| #23 | COPY server . |
| #24 |
| #25 | CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"] |
| #26 |