FROM python:3.10-slim ENV PYTHONUNBUFFERED=1 ENV STREAMLIT_PORT=7860 ENV STREAMLIT_BROWSER_GATHER_USAGE_STATS=false WORKDIR /app COPY requirements.txt ./ COPY asistente_cuantico_pymes_app.py ./app.py COPY README.md ./ COPY .huggingface.yml ./ RUN pip install --upgrade pip \ && pip install --no-cache-dir -r requirements.txt EXPOSE 7860 CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.enableCORS=false"]