Vladyslav Len
chore(): added dockerfile
aeef9ae
FROM python:3.9
WORKDIR /code
RUN pip install --no-cache-dir --upgrade gradio
COPY . .
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]