Gilbert Botchway commited on
Commit
b3b17b0
1 Parent(s): d72692c
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -6,7 +6,10 @@ COPY requirements.txt .
6
 
7
  COPY sentimentappstreamlit.py .
8
 
9
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
 
 
 
10
 
11
  COPY . .
12
 
 
6
 
7
  COPY sentimentappstreamlit.py .
8
 
9
+ RUN pip3 install --upgrade pip
10
+
11
+ RUN pip3 install -r requirements.txt
12
+
13
 
14
  COPY . .
15