Spaces:
Runtime error
Runtime error
Marc Skov Madsen
commited on
Commit
·
e8bb7a1
1
Parent(s):
62096b7
fix
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -4,7 +4,7 @@ WORKDIR /code
|
|
| 4 |
|
| 5 |
COPY ./requirements.txt /code/requirements.txt
|
| 6 |
RUN pip install uv
|
| 7 |
-
RUN uv venv
|
| 8 |
|
| 9 |
COPY . .
|
| 10 |
|
|
|
|
| 4 |
|
| 5 |
COPY ./requirements.txt /code/requirements.txt
|
| 6 |
RUN pip install uv
|
| 7 |
+
RUN uv venv && . .venv/bin/activate && uv pip install -r /code/requirements.txt
|
| 8 |
|
| 9 |
COPY . .
|
| 10 |
|