File size: 205 Bytes
6d23ac8
531298c
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"]