Steffen Slavetinsky commited on
Commit
d98cc59
·
1 Parent(s): f50e2a9

only copy whl at first

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -6,10 +6,12 @@ ENV HOME=/code
6
  RUN apt install curl
7
  RUN pip install pip -U
8
 
9
- COPY . .
10
 
11
  RUN pip install renumics_spotlight-1.3.0.post101+ac8ed08-py3-none-any.whl
12
 
 
 
13
  RUN mkdir -p /code/.cache
14
  RUN chmod -R 777 /code
15
 
 
6
  RUN apt install curl
7
  RUN pip install pip -U
8
 
9
+ COPY renumics_spotlight-1.3.0.post101+ac8ed08-py3-none-any.whl .
10
 
11
  RUN pip install renumics_spotlight-1.3.0.post101+ac8ed08-py3-none-any.whl
12
 
13
+ COPY . .
14
+
15
  RUN mkdir -p /code/.cache
16
  RUN chmod -R 777 /code
17