marcowhereru/screenplay-parser
0
1FROM python:3.11-slim2 3WORKDIR /app4 5# Install dependencies6COPY src/requirements.txt .7RUN pip install --no-cache-dir -r requirements.txt8 9# Copy application code10COPY src/ .11COPY .streamlit/ .streamlit/12 13# Expose Streamlit default port14EXPOSE 850115 16# Health check for HF Spaces17HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health18 19# Run the Streamlit app20ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0", "--browser.gatherUsageStats=false"]21 