Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Ffftdtd5dtft
/
Hhhggv
like
0
Runtime error
App
Files
Files
Community
6f82a15
Hhhggv
/
Dockerfile
Ffftdtd5dtft
Update Dockerfile
6d23ac8
verified
3 months ago
raw
Copy download link
history
blame
Safe
205 Bytes
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"
]