test / dockerfile
th0mascat's picture
files added
7ff20b3
raw
history blame
185 Bytes
FROM python:3.11
COPY . .
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["uvicorn", "handwritting_fastapi:app", "--host", "0.0.0.0", "--port", "7860"]