Abijith's picture
Create Dockerfile
f6f4049
raw
history blame
655 Bytes
FROM python:3.9-slim
WORKDIR /workspace
RUN apt-get update && apt-get install -y \
build-essential \
curl \
software-properties-common \
git \
tesseract-ocr \
&& rm -rf /var/lib/apt/lists/*
RUN git clone https://gitlab.com/abijithe61/yol-ov-4-tf-lite-for-generic-invoice-reader.git .
COPY requirements.txt ./
RUN pip install -r requirements.txt --no-cache-dir
# COPY models/checkpoints ./models/checkpoints
# COPY core ./core
# COPY data ./data
# COPY detections ./detections
# COPY templates ./templates
# COPY detect.py ./
# COPY main.py ./
# EXPOSE 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]