Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -38,8 +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/
|
| 42 |
-
.venv/bin/
|
| 43 |
.venv/bin/playwright install --with-deps chromium
|
| 44 |
|
| 45 |
# Expose application port
|
|
|
|
| 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 |
|
| 45 |
# Expose application port
|