Ffftdtd5dtft commited on
Commit
531298c
1 Parent(s): 5e817e6

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -0
Dockerfile ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.8
2
+
3
+ WORKDIR /app
4
+
5
+ COPY . /app
6
+
7
+ # Crear directorios para nltk_data y sklearn_data
8
+ RUN mkdir -p /cache
9
+
10
+ RUN pip install --no-cache-dir -r requirements.txt
11
+
12
+
13
+ EXPOSE 7860
14
+
15
+ CMD ["python", "app.py"]