Spaces:
Sleeping
Sleeping
File size: 1,078 Bytes
ad57a01 |
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 45 46 47 48 |
# Use Python 3.9 slim image
FROM python:3.9-slim
# Set working directory
WORKDIR /app
# Install system dependencies for cairosvg
RUN apt-get update && apt-get install -y \
build-essential \
python3-dev \
python3-pip \
python3-setuptools \
libcairo2-dev \
pkg-config \
libcairo2 \
libcairo-gobject2 \
python3-cairo \
libpango1.0-dev \
shared-mime-info \
mime-support \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first to leverage Docker cache
COPY requirements.txt .
# Install Python packages
RUN pip install --no-cache-dir -r requirements.txt
# Download spaCy language model
RUN python -m spacy download en_core_web_md
# Copy application files
COPY app.py .
COPY utils.py .
# Create and configure streamlit directory
RUN mkdir -p /root/.streamlit
RUN echo "\
[server]\n\
enableCORS = false\n\
enableXsrfProtection = false\n\
" > /root/.streamlit/config.toml
# Expose port for Streamlit
EXPOSE 8501
# Set entry command
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"] |