CoolFace
Apppublic

JohnathyBoi/math-ocr-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
Dockerfile6 linesDownload Raw Back to root
1FROM python:3.10-slim
2WORKDIR /code
3COPY ./requirements.txt /code/requirements.txt
4RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
5COPY . .
6CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]