Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -54,9 +54,10 @@ RUN groupadd -r appgroup --gid 1000 && \
|
|
54 |
mkdir -p /home/appuser/.streamlit && \
|
55 |
chown -R appuser:appgroup /home/appuser
|
56 |
|
57 |
-
# Set Streamlit home directory (already created and chowned)
|
58 |
ENV STREAMLIT_HOME=/home/appuser/.streamlit
|
59 |
-
|
|
|
60 |
|
61 |
# Set the working directory in the container
|
62 |
WORKDIR /app
|
|
|
54 |
mkdir -p /home/appuser/.streamlit && \
|
55 |
chown -R appuser:appgroup /home/appuser
|
56 |
|
57 |
+
# Set Streamlit home directory (already created and chowned under appuser)
|
58 |
ENV STREAMLIT_HOME=/home/appuser/.streamlit
|
59 |
+
# Set environment variable to disable telemetry (alternative to CLI flag)
|
60 |
+
ENV BROWSER_GATHERUSAGEDATA=false
|
61 |
|
62 |
# Set the working directory in the container
|
63 |
WORKDIR /app
|