Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Ffftdtd5dtft
/
Hhhggv
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0ecfceb
Hhhggv
/
Dockerfile
Ffftdtd5dtft
Create Dockerfile
531298c
verified
7 months ago
raw
Copy download link
history
blame
Safe
205 Bytes
FROM
python:
3.8
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"
]