Ugly_detector / Dockerfile
Ercik's picture
Update Dockerfile
78c1f0b verified
raw
history blame contribute delete
602 Bytes
FROM python:3.13.5-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
build-essential \
curl \
git \
&& rm -rf /var/lib/apt/lists/*
# Copiar TODO el proyecto (incluye modelo)
COPY . /app
# Instalar dependencias
RUN pip3 install --no-cache-dir -r requirements.txt
# Puerto de Streamlit
EXPOSE 8501
# Healthcheck para Hugging Face
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health || exit 1
# Ejecutar app
ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", \
"--server.port=8501", \
"--server.address=0.0.0.0", \
"--server.enableXsrfProtection=false"]