masanorihirano commited on
Commit
eb6ec9b
·
verified ·
1 Parent(s): cbe8851

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -21,6 +21,9 @@ RUN pip install -U setuptools wheel
21
  RUN pip install torch==2.5.1+cu124 --index-url https://download.pytorch.org/whl/cu124
22
  RUN pip install -r requirements.txt
23
 
 
 
 
24
  COPY --link --chown=1000 ./app.py /home/user/app/app.py
25
 
26
  EXPOSE 7860
 
21
  RUN pip install torch==2.5.1+cu124 --index-url https://download.pytorch.org/whl/cu124
22
  RUN pip install -r requirements.txt
23
 
24
+ COPY --link --chown=1000 ./model_pull.py /home/user/app/model_pull.py
25
+ RUN python3.10 model_pull.py
26
+
27
  COPY --link --chown=1000 ./app.py /home/user/app/app.py
28
 
29
  EXPOSE 7860