binary1ne commited on
Commit
79d1c57
·
verified ·
1 Parent(s): bab5c99

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -38,7 +38,8 @@ RUN uv venv --python 3.11 && \
38
  chmod -R a+rx /web-ui/.venv && chmod -R a+r /web-ui/.venv
39
 
40
  # Install dependencies inside venv
41
- RUN .venv/bin/pip3 install --no-cache-dir --upgrade pip uv==0.4.17 playwright && \
 
42
  .venv/bin/pip3 install --no-cache-dir -r requirements.txt && \
43
  .venv/bin/playwright install --with-deps chromium
44
 
 
38
  chmod -R a+rx /web-ui/.venv && chmod -R a+r /web-ui/.venv
39
 
40
  # Install dependencies inside venv
41
+ RUN .venv/bin/python3 -m ensurepip && \
42
+ .venv/bin/pip3 install --no-cache-dir --upgrade pip uv==0.4.17 playwright && \
43
  .venv/bin/pip3 install --no-cache-dir -r requirements.txt && \
44
  .venv/bin/playwright install --with-deps chromium
45