FROM python:3.9-slim | |
RUN pip install fastapi uvicorn pydantic requests transformers torch python-multipart | |
COPY app.py /app/app.py | |
WORKDIR /app | |
EXPOSE 7860 | |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |
FROM python:3.9-slim | |
RUN pip install fastapi uvicorn pydantic requests transformers torch python-multipart | |
COPY app.py /app/app.py | |
WORKDIR /app | |
EXPOSE 7860 | |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |