File size: 367 Bytes
2aac249
 
 
 
 
 
 
 
41ebe2e
1b9a711
2aac249
 
 
 
 
 
508acc7
 
2aac249
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM python:3.10-slim

WORKDIR /app

COPY . .

RUN apt-get update && apt-get install -y wget git

RUN pip install --upgrade pip setuptools wheel

RUN pip install --upgrade pip setuptools wheel

RUN pip install -r JarvisIR/requirements.txt

RUN pip install -e JarvisIR/package

RUN pip install basicsr_ridcp-0.0.0-cp310-cp310-linux_x86_64.whl

CMD ["python", "app.py"]