Spaces:
Build error
Build error
pdm
Browse files- Dockerfile +1 -0
- entrypoint.sh → server/entrypoint.sh +2 -2
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 |
-
|
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
|