ocr-app-private / Dockerfile
MasterSayn's picture
Upload folder using huggingface_hub
015baa0 verified
Raw
History Blame Contribute Delete
242 Bytes
FROM python:3.10
WORKDIR /code
COPY packages.txt .
RUN apt-get update && xargs -a packages.txt apt-get install -y
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "gradio_api.py"]