File size: 945 Bytes
f6f4049
 
 
 
 
 
 
 
 
 
 
 
286da08
eddf0a1
f6f4049
 
 
81e950f
 
 
 
67dabd1
f3ebd8e
67dabd1
 
81e950f
67dabd1
eddf0a1
d1cc9e8
81e950f
286da08
dcd8a54
f6f4049
 
 
 
 
 
 
 
 
 
dcd8a54
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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/*

# COPY requirements.txt ./
# 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

RUN useradd -m -u 1000 user

USER user

# RUN chmod 755 /workspace

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 ./
# COPY --chown=user . $HOME/app

RUN echo $(ls)

# 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"]