CodeCommunity commited on
Commit
f1255d6
·
verified ·
1 Parent(s): c1ad306

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -4
Dockerfile CHANGED
@@ -31,9 +31,6 @@ RUN pip install --no-cache-dir --user --upgrade -r /code/requirements.txt
31
  # 8. Copy the entire project
32
  COPY --chown=user . /code
33
 
34
- # 9. Pre-download models during Build
35
- RUN python -m app.setup_models
36
-
37
- # 10. Start the application
38
  EXPOSE 7860
39
  CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
 
31
  # 8. Copy the entire project
32
  COPY --chown=user . /code
33
 
34
+ # 9. Start the application
 
 
 
35
  EXPOSE 7860
36
  CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]