Skip to content

Commit 83f6ee5

Browse files
committed
Copy entire .streamlit folder in Docker containers
Previously only .streamlit/config.toml was copied. This change copies the entire .streamlit folder including credentials.toml and secrets.toml.example files. https://claude.ai/code/session_01VQFwSZJHdHDfhfQxF4FqiQ
1 parent e1df1a7 commit 83f6ee5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ COPY settings.json /app/settings.json
143143
COPY default-parameters.json /app/default-parameters.json
144144

145145
# For streamlit configuration
146-
COPY .streamlit/config.toml /app/.streamlit/config.toml
146+
COPY .streamlit/ /app/.streamlit/
147147
COPY clean-up-workspaces.py /app/clean-up-workspaces.py
148148

149149
# add cron job to the crontab

Dockerfile_simple

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ COPY settings.json /app/settings.json
7676
COPY default-parameters.json /app/default-parameters.json
7777

7878
# For streamlit configuration
79-
COPY .streamlit/config.toml /app/.streamlit/config.toml
79+
COPY .streamlit/ /app/.streamlit/
8080

8181
COPY clean-up-workspaces.py /app/clean-up-workspaces.py
8282

0 commit comments

Comments
 (0)