Spaces:
Sleeping
Sleeping
File size: 341 Bytes
a5779bc c594301 6a9883b a5779bc c594301 a5779bc c594301 a5779bc c594301 a5779bc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
FROM python:3.10-slim
# Install dependencies
RUN pip install streamlit
# Set Streamlit config to not gather usage stats
RUN mkdir -p /root/.streamlit && \
echo "\
[browser]\n\
gatherUsageStats = false\n\
" > /root/.streamlit/config.toml
# Copy your app files
COPY . /app
WORKDIR /app
# Run the app
CMD ["streamlit", "run", "app.py"]
|