Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -15,9 +15,9 @@ COPY src/ ./src/
|
|
15 |
RUN pip3 install -r requirements.txt
|
16 |
|
17 |
# Create config directories and set environment variables
|
18 |
-
RUN mkdir -p /app/.streamlit /app/.matplotlib
|
19 |
echo "[general]\ntelemetryEnabled = false\n[server]\nfileWatcherType = \"none\"" > /app/.streamlit/config.toml && \
|
20 |
-
chmod -R 777 /app/.streamlit /app/.matplotlib
|
21 |
|
22 |
EXPOSE 8501
|
23 |
|
|
|
15 |
RUN pip3 install -r requirements.txt
|
16 |
|
17 |
# Create config directories and set environment variables
|
18 |
+
RUN mkdir -p /app/.streamlit /app/.matplotlib && \
|
19 |
echo "[general]\ntelemetryEnabled = false\n[server]\nfileWatcherType = \"none\"" > /app/.streamlit/config.toml && \
|
20 |
+
chmod -R 777 /app/.streamlit /app/.matplotlib
|
21 |
|
22 |
EXPOSE 8501
|
23 |
|