tianlong12 commited on
Commit
e1691db
·
verified ·
1 Parent(s): f7d904f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -3,7 +3,8 @@ FROM python:3.9-slim
3
  WORKDIR /app
4
 
5
  COPY requirements.txt .
6
- RUN pip install --no-cache-dir -r requirements.txt
 
7
 
8
  COPY . .
9
 
 
3
  WORKDIR /app
4
 
5
  COPY requirements.txt .
6
+ RUN pip install --no-cache-dir --upgrade pip && \
7
+ pip install --no-cache-dir -r requirements.txt
8
 
9
  COPY . .
10