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| FROM python:3.12-slim |
| #2 |
| #3 | WORKDIR /app |
| #4 |
| #5 | COPY requirements.txt . |
| #6 |
| #7 | RUN pip install --no-cache-dir -r requirements.txt |
| #8 |
| #9 | COPY . . |
| #10 |
| #11 | EXPOSE 8000 |
| #12 |
| #13 | ENV PYTHONUNBUFFERED=1 |
| #14 |
| #15 | CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"] |
| #16 |