Marc Skov Madsen commited on
Commit
e8bb7a1
·
1 Parent(s): 62096b7
Files changed (1) hide show
  1. 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 & source .venv/bin/activate & uv pip install -r /code/requirements.txt
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