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

copy files before use

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