stochasticribosome commited on
Commit
0f32967
1 Parent(s): 6f870ad

trying out fixes for build timeout

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -26,8 +26,8 @@ WORKDIR $HOME/app
26
 
27
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
28
  COPY --chown=user . $HOME/app
29
-
30
- CMD ["python", "main.py"]
31
 
32
 
33
 
 
26
 
27
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
28
  COPY --chown=user . $HOME/app
29
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
30
+ #CMD ["python", "main.py"]
31
 
32
 
33