skillscope / Dockerfile
Ame-Mark's picture
Upload Dockerfile with huggingface_hub
7e44035 verified
Raw
History Blame Contribute Delete
378 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
COPY .streamlit/config.toml .streamlit/config.toml
EXPOSE 8501
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0", "--server.headless=true", "--server.enableCORS=false", "--server.enableXsrfProtection=false"]