Ufoptg commited on
Commit
c73cd6a
·
verified ·
1 Parent(s): dfed028

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -16,9 +16,9 @@ WORKDIR /app/
16
  COPY . .
17
 
18
 
19
- RUN pip install --upgrade pip setuptools
20
- RUN pip3 install -U motor
21
- RUN pip3 install -r requirements.txt
22
 
23
  RUN chown -R 1000:0 .
24
  RUN chmod 777 .
 
16
  COPY . .
17
 
18
 
19
+ RUN pip install --no-cache-dir --upgrade pip setuptools
20
+ RUN pip install --no-cache-dir -U motor
21
+ RUN pip install --no-cache-dir -r requirements.txt
22
 
23
  RUN chown -R 1000:0 .
24
  RUN chmod 777 .