Skip to content

Commit 9fc128a

Browse files
committed
Fix engrafo version
1 parent 6ad4c02 commit 9fc128a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sota_extractor2/helpers/latex_converter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def latex2html(self, source_dir, output_dir):
3333
output_dir.mkdir(parents=True, exist_ok=True)
3434
filename = "index.html"
3535
command = ["/files/latex2html.sh", filename]
36-
self.client.containers.run("arxivvanity/engrafo", command, remove=True, volumes=volumes)
36+
self.client.containers.run("arxivvanity/engrafo:b3db888fefa118eacf4f13566204b68ce100b3a6", command, remove=True, volumes=volumes)
3737

3838
# todo: check for errors
3939

@@ -43,7 +43,7 @@ def clean_html(self, path):
4343
path.resolve(): ro_bind("/files/index.html"),
4444
}
4545

46-
command = "timeout -t 20 -s KILL chromium-browser --headless" \
46+
command = "timeout -s KILL 20 chromium-browser --headless" \
4747
" --disable-gpu --disable-software-rasterizer --no-sandbox" \
4848
" --timeout=30000 --dump-dom /files/index.html"
4949
data = self.client.containers.run("zenika/alpine-chrome:73", command, remove=True, entrypoint="",

0 commit comments

Comments
 (0)