rhuang03 commited on
Commit
94e0865
·
verified ·
1 Parent(s): 6295354

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -4,7 +4,7 @@ USER user
4
  WORKDIR /app
5
  COPY --chown=user . $HOME/app
6
  COPY ./requirements.txt /app/requirements.txt
7
- RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
8
 
9
  COPY . .
10
 
 
4
  WORKDIR /app
5
  COPY --chown=user . $HOME/app
6
  COPY ./requirements.txt /app/requirements.txt
7
+ RUN pip install -r requirements.txt
8
 
9
  COPY . .
10