feat: add agents

This commit is contained in:
2025-03-24 20:28:53 -05:00
parent bdbeb4d4cf
commit cb63404b50
10 changed files with 3304 additions and 12 deletions

21
agents/Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
FROM python:3.11-slim
RUN pip install poetry==1.6.1
RUN poetry config virtualenvs.create false
WORKDIR /code
COPY ./pyproject.toml ./README.md ./poetry.lock* ./
COPY ./package[s] ./packages
RUN poetry install --no-interaction --no-ansi --no-root
COPY ./app ./app
RUN poetry install --no-interaction --no-ansi
EXPOSE 8080
CMD exec uvicorn app.server:app --host 0.0.0.0 --port 8080