James Frecheville
commited on
Commit
·
f7954c5
1
Parent(s):
e879951
Fix Gradio UI components and update Playwright dependencies
Browse files- Dockerfile +17 -0
- owl/webapp.py +2 -2
Dockerfile
CHANGED
@@ -20,6 +20,23 @@ RUN apt-get update && apt-get install -y \
|
|
20 |
libgl1-mesa-glx \
|
21 |
libsm6 \
|
22 |
libxext6 \
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
ffmpeg \
|
24 |
xvfb \
|
25 |
&& rm -rf /var/lib/apt/lists/*
|
|
|
20 |
libgl1-mesa-glx \
|
21 |
libsm6 \
|
22 |
libxext6 \
|
23 |
+
libx11-xcb1 \
|
24 |
+
libxcb-dri3-0 \
|
25 |
+
libdrm2 \
|
26 |
+
libxkbcommon0 \
|
27 |
+
libxcomposite1 \
|
28 |
+
libxdamage1 \
|
29 |
+
libxfixes3 \
|
30 |
+
libxrandr2 \
|
31 |
+
libgbm1 \
|
32 |
+
libasound2 \
|
33 |
+
libpango-1.0-0 \
|
34 |
+
libpangocairo-1.0-0 \
|
35 |
+
libgdk-pixbuf2.0-0 \
|
36 |
+
libgtk-3-0 \
|
37 |
+
libgl1-mesa-glx \
|
38 |
+
libsm6 \
|
39 |
+
libxext6 \
|
40 |
ffmpeg \
|
41 |
xvfb \
|
42 |
&& rm -rf /var/lib/apt/lists/*
|
owl/webapp.py
CHANGED
@@ -1161,7 +1161,7 @@ def create_ui():
|
|
1161 |
)
|
1162 |
|
1163 |
with gr.TabItem("Environment Variable Management", id="env-settings"):
|
1164 |
-
with gr.
|
1165 |
gr.Markdown("""
|
1166 |
## Environment Variable Management
|
1167 |
|
@@ -1172,7 +1172,7 @@ def create_ui():
|
|
1172 |
with gr.Row():
|
1173 |
# Left column: Environment variable management controls
|
1174 |
with gr.Column(scale=3):
|
1175 |
-
with gr.
|
1176 |
# Environment variable table - set to interactive for direct editing
|
1177 |
gr.Markdown("""
|
1178 |
<div style="background-color: #e7f3fe; border-left: 6px solid #2196F3; padding: 10px; margin: 15px 0; border-radius: 4px;">
|
|
|
1161 |
)
|
1162 |
|
1163 |
with gr.TabItem("Environment Variable Management", id="env-settings"):
|
1164 |
+
with gr.Column(elem_classes="env-manager-container"):
|
1165 |
gr.Markdown("""
|
1166 |
## Environment Variable Management
|
1167 |
|
|
|
1172 |
with gr.Row():
|
1173 |
# Left column: Environment variable management controls
|
1174 |
with gr.Column(scale=3):
|
1175 |
+
with gr.Column(elem_classes="env-controls"):
|
1176 |
# Environment variable table - set to interactive for direct editing
|
1177 |
gr.Markdown("""
|
1178 |
<div style="background-color: #e7f3fe; border-left: 6px solid #2196F3; padding: 10px; margin: 15px 0; border-radius: 4px;">
|