Lyon28 commited on
Commit
17b6940
·
verified ·
1 Parent(s): 330d95a

Update Dockerfile

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