File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
FROM python:3.6-slim-buster
2
2
3
+ # Additional required files for openCV
4
+ RUN apt-get update
5
+ RUN apt-get install ffmpeg libsm6 libxext6 -y
6
+
3
7
WORKDIR ./app
4
8
5
9
COPY ./requirements.txt .
6
10
7
11
RUN pip install -r requirements.txt
8
12
9
- # Additional required files for openCV
10
- RUN apt-get update
11
- RUN apt-get install ffmpeg libsm6 libxext6 -y
12
-
13
13
COPY ./ ./
14
14
15
- CMD ["python" , "routes .py" ]
15
+ CMD ["python" , "app .py" ]
File renamed without changes.
Original file line number Diff line number Diff line change 23
23
treeLoaded = false ;
24
24
25
25
// Lazy load JSTree element (for very large files)
26
- $ ( ".nav-item.Interactive_MMIF " ) . click ( function ( ) {
26
+ $ ( ".nav-item.Tree " ) . click ( function ( ) {
27
27
if ( treeLoaded )
28
28
return
29
29
treeLoaded = true ;
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ def prep_annotations(mmif):
130
130
tabs = [("Info" , "<pre>" + create_info (mmif ) + "</pre>" ),
131
131
("MMIF" , "<pre>" + mmif .serialize (pretty = True ) + "</pre>" ),
132
132
("Annotations" , create_annotation_tables (mmif )),
133
- ("Interactive_MMIF " , render_interactive_mmif (mmif ))]
133
+ ("Tree " , render_interactive_mmif (mmif ))]
134
134
# TODO: since this uses the same tab-name this will only show the same
135
135
# stuff; it does a loop but for now we assume there is just one file with
136
136
# alignments (generated by Kaldi)
You can’t perform that action at this time.
0 commit comments