File size: 604 Bytes
5e6d15e
 
 
 
 
 
 
d23118b
 
 
 
 
 
 
 
 
f169d2b
 
 
 
 
 
 
 
 
d23118b
5e6d15e
38bc0de
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
FROM python:3.9

WORKDIR /code

# Install git
RUN apt-get update && apt-get install -y git

RUN useradd -m -u 1000 user

USER user

ENV HOME=/home/user \
	PATH=/home/user/.local/bin:$PATH

WORKDIR $HOME/app

# Install CutLER
RUN git clone --recursive https://github.com/Ad-Visual/CutLER $HOME/app/CutLER

RUN pip install --no-cache-dir --upgrade -r $HOME/app/CutLER/requirements.txt

COPY ./requirements.txt $HOME/app/requirements.txt

RUN pip install --no-cache-dir --upgrade -r $HOME/app/requirements.txt

COPY --chown=user . $HOME/app

CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]