rrevo commited on
Commit
b49203e
·
1 Parent(s): c92940c

dockerilfe

Browse files
Files changed (2) hide show
  1. Dockerfile +1 -1
  2. 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
- pdm add flash_attn --no-isolation
 
 
 
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