Spaces:
Sleeping
Sleeping
chore: add config
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -20,6 +20,8 @@ RUN pip3 install -r requirements.txt
|
|
| 20 |
# Copy the rest of the application files.
|
| 21 |
COPY streamlit_app.py ./
|
| 22 |
|
|
|
|
|
|
|
| 23 |
# Create a non-root user to run the app. This is a security best practice.
|
| 24 |
RUN useradd -ms /bin/bash streamlit
|
| 25 |
RUN chown -R streamlit:streamlit /app
|
|
|
|
| 20 |
# Copy the rest of the application files.
|
| 21 |
COPY streamlit_app.py ./
|
| 22 |
|
| 23 |
+
COPY .streamlit/config.toml .streamlit/
|
| 24 |
+
|
| 25 |
# Create a non-root user to run the app. This is a security best practice.
|
| 26 |
RUN useradd -ms /bin/bash streamlit
|
| 27 |
RUN chown -R streamlit:streamlit /app
|