Diamanta commited on
Commit
cc97c64
·
verified ·
1 Parent(s): 00d1b14

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -27,7 +27,7 @@ ENV MODEL_FILE=phi-2.Q4_K_M.gguf
27
  # Create model loader script
28
  RUN echo '#!/bin/bash\n'\
29
  'python download_model.py\n'\
30
- 'uvicorn main:app --host 0.0.0.0 --port 7860' > entrypoint.sh && \
31
  chmod +x entrypoint.sh
32
 
33
  CMD ["./entrypoint.sh"]
 
27
  # Create model loader script
28
  RUN echo '#!/bin/bash\n'\
29
  'python download_model.py\n'\
30
+ 'uvicorn app:app --host 0.0.0.0 --port 7860' > entrypoint.sh && \
31
  chmod +x entrypoint.sh
32
 
33
  CMD ["./entrypoint.sh"]