File size: 915 Bytes
d751a75 be5152c d751a75 be5152c d751a75 3e115ac be5152c 3e115ac be5152c 3e115ac be5152c 3e115ac 2151e19 d751a75 3e115ac d751a75 3e115ac d751a75 be5152c d751a75 be5152c 3e9505c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
FROM python:3.9-slim
# Set working directory
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
curl \
software-properties-common \
git \
&& rm -rf /var/lib/apt/lists/*
# Ensure .streamlit dir exists
RUN mkdir -p /app/.streamlit
# Add Streamlit config (fix CORS + XSRF)
RUN echo "\
[server]\n\
headless = true\n\
port = 8501\n\
enableCORS = false\n\
enableXsrfProtection = false\n\
\n\
[browser]\n\
gatherUsageStats = false\n\
" > /app/.streamlit/config.toml
# Copy files
COPY requirements.txt ./
COPY . .
# Install Python dependencies
RUN pip3 install --no-cache-dir -r requirements.txt
# Expose Streamlit port
EXPOSE 8501
# Healthcheck
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health || exit 1
# Start Streamlit
ENTRYPOINT ["streamlit", "run", "streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"]
|