masanorihirano commited on
Commit
de536d3
·
verified ·
1 Parent(s): ffde7ba

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -20,8 +20,9 @@ WORKDIR /home/user/app
20
  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
27
- ENTRYPOINT ["python", "app.py"]
 
20
  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
+ RUN huggingface-cli download pfnet/plamo-2-1b
24
 
25
  COPY --link --chown=1000 ./app.py /home/user/app/app.py
26
 
27
  EXPOSE 7860
28
+ ENTRYPOINT ["python3", "app.py"]