Spaces:
Build error
Build error
dockerilfe
Browse files- Dockerfile +1 -1
- server/entrypoint.sh +4 -1
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
FROM python:3.11 as builder
|
2 |
|
3 |
WORKDIR /code
|
4 |
|
|
|
1 |
+
FROM python:3.11-bookworm as builder
|
2 |
|
3 |
WORKDIR /code
|
4 |
|
server/entrypoint.sh
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
-
|
|
|
|
|
|
|
4 |
echo "Installation done"
|
5 |
|
6 |
./.venv/bin/uvicorn src.main:app --host 0.0.0.0 --port 7860
|
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
+
source ./.venv/bin/activate
|
4 |
+
|
5 |
+
pip install flash_attn --no-build-isolation
|
6 |
+
|
7 |
echo "Installation done"
|
8 |
|
9 |
./.venv/bin/uvicorn src.main:app --host 0.0.0.0 --port 7860
|