board-recognizer / Dockerfile
wai572's picture
Revert "paddleocr"
11cc1d4
raw
history blame
399 Bytes
FROM python:3.12.1
ENV HF_HOME /tmp
WORKDIR /code
RUN apt-get update && apt-get install -y libgl1-mesa-glx libboost-thread1.74.0 && rm -rf /var/lib/apt/lists/*
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY ./. /code/
# uvicornを起動
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]