ar08 commited on
Commit
7451fd1
·
verified ·
1 Parent(s): 2c933a0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -10,10 +10,10 @@ WORKDIR /app
10
 
11
  COPY . /app/
12
 
13
- RUN mkdir checkpoints
14
- RUN wget -O ./checkpoints/inswapper_128.onnx https://huggingface.co/ashleykleynhans/inswapper/resolve/main/inswapper_128.onnx
15
 
16
  RUN pip install torch
17
  RUN pip3 install -r requirements.txt
 
 
18
 
19
  CMD ["python3","app.py","-H","0.0.0.0","-p","7860"]
 
10
 
11
  COPY . /app/
12
 
 
 
13
 
14
  RUN pip install torch
15
  RUN pip3 install -r requirements.txt
16
+ RUN mkdir checkpoints
17
+ RUN wget -O ./checkpoints/inswapper_128.onnx https://huggingface.co/ashleykleynhans/inswapper/resolve/main/inswapper_128.onnx
18
 
19
  CMD ["python3","app.py","-H","0.0.0.0","-p","7860"]