DeepFin / agents /app /dokerfile
amos-fernandes's picture
Upload 151 files
b3a7985 verified
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8000
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]