soeren commited on
Commit
0033632
·
1 Parent(s): 2f0bf4a

install from requirements in Dockerfile

Browse files
Files changed (2) hide show
  1. Dockerfile +4 -2
  2. requirements.txt +1 -1
Dockerfile CHANGED
@@ -6,9 +6,11 @@ ENV HOME=/code
6
  RUN apt install curl
7
  RUN pip install pip -U
8
 
9
- RUN pip install renumics-spotlight==1.2.0rc2
 
 
 
10
 
11
- RUN pip install datasets
12
  COPY prepare.py .
13
  RUN python prepare.py
14
 
 
6
  RUN apt install curl
7
  RUN pip install pip -U
8
 
9
+ # RUN pip install renumics-spotlight==1.2.0rc2
10
+ # RUN pip install datasets
11
+ COPY requirements.txt .
12
+ RUN pip install -r requirements.txt
13
 
 
14
  COPY prepare.py .
15
  RUN python prepare.py
16
 
requirements.txt CHANGED
@@ -1,4 +1,4 @@
1
  renumics-spotlight
2
  datasets
3
  soundfile
4
- librosa
 
1
  renumics-spotlight
2
  datasets
3
  soundfile
4
+ librosa