rrevo commited on
Commit
5cc765e
·
1 Parent(s): 70f1eec
Dockerfile CHANGED
@@ -14,3 +14,4 @@ ENV DEVICE cuda:0
14
  ENV ATTN_IMPLEMENTATION flash_attention_2
15
 
16
  ENTRYPOINT [ "./entrypoint.sh" ]
 
 
14
  ENV ATTN_IMPLEMENTATION flash_attention_2
15
 
16
  ENTRYPOINT [ "./entrypoint.sh" ]
17
+ CMD ["./.venv/bin/uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "7860"]
entrypoint.sh → server/entrypoint.sh RENAMED
@@ -1,4 +1,4 @@
1
- pdm add flash_attn --no-isolation
2
 
3
- ./.venv/bin/uvicorn src.main:app --host 0.0.0.0 --port 7860
4
 
 
 
1
+ #!/bin/bash
2
 
 
3
 
4
+ pdm add flash_attn --no-isolation