Spaces:
Sleeping
Sleeping
Dan Flower
commited on
Commit
·
0a783c4
1
Parent(s):
69e3ac6
troubleshoot acess to /streamlit, invoke chat UI
Browse files- Dockerfile +3 -0
- model/__init__.py +0 -0
- modules/__init__.py +0 -0
- utils/__init__.py +0 -0
Dockerfile
CHANGED
@@ -30,3 +30,6 @@ ENV BROWSER_GATHER_USAGE_STATS=false
|
|
30 |
|
31 |
# Optional: disable telemetry explicitly
|
32 |
RUN echo "[browser]\ngatherUsageStats = false" > /tmp/.streamlit/config.toml
|
|
|
|
|
|
|
|
30 |
|
31 |
# Optional: disable telemetry explicitly
|
32 |
RUN echo "[browser]\ngatherUsageStats = false" > /tmp/.streamlit/config.toml
|
33 |
+
|
34 |
+
# Set up .streamlit path permissions and force ownership
|
35 |
+
RUN mkdir -p /.streamlit && chmod -R 777 /.streamlit
|
model/__init__.py
ADDED
File without changes
|
modules/__init__.py
ADDED
File without changes
|
utils/__init__.py
ADDED
File without changes
|