Abijith's picture
Update Dockerfile
8036158
raw
history blame contribute delete
644 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 \
libopencv-dev \
python3-opencv \
&& rm -rf /var/lib/apt/lists/*
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
RUN git clone https://gitlab.com/abijithe61/yol-ov-4-tf-lite-for-generic-invoice-reader.git ./
RUN pip install -r requirements.txt --no-cache-dir
# To verify the packages inside workspace
RUN echo $(ls)
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]