joaoargolo1 commited on
Commit
bad4442
verified
1 Parent(s): 384993b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -5,7 +5,8 @@ WORKDIR /code
5
  COPY requirements.txt .
6
 
7
  RUN pip install --upgrade pip && \
8
- pip install --no-cache-dir -r requirements.txt
 
9
 
10
  COPY . .
11
 
 
5
  COPY requirements.txt .
6
 
7
  RUN pip install --upgrade pip && \
8
+ pip install --no-cache-dir -r requirements.txt && \
9
+ rm -rf ~/.cache/pip
10
 
11
  COPY . .
12