Spaces:
Runtime error
Runtime error
FROM python:3.9 | |
WORKDIR /app | |
COPY . /app | |
# Crear directorios para nltk_data y sklearn_data | |
RUN mkdir -p /cache | |
RUN pip install --no-cache-dir -r requirements.txt | |
EXPOSE 7860 | |
CMD ["python", "app.py"] |