Uchenna commited on
Commit
e43e2b0
·
1 Parent(s): 0ed4c9c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -7,6 +7,10 @@ WORKDIR /code
7
 
8
  # Copy the current directory contents into the container at /code
9
  COPY ./requirements.txt /code/requirements.txt
 
 
 
 
10
 
11
 
12
 
 
7
 
8
  # Copy the current directory contents into the container at /code
9
  COPY ./requirements.txt /code/requirements.txt
10
+
11
+
12
+ # Install requirements.txt
13
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
14
 
15
 
16