mirror of
https://github.com/qurator-spk/ocrd-galley.git
synced 2025-06-09 06:39:53 +02:00
14 lines
277 B
Bash
Executable file
14 lines
277 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
(
|
|
cd data
|
|
git annex init
|
|
git annex upgrade
|
|
for f in "calamari-models/GT4HistOCR/*.ckpt*" "tesseract-models/GT4HistOCR/*.traineddata" "textline_detection/*.h5"; do
|
|
git annex get $f
|
|
git annex fsck $f
|
|
done
|
|
)
|
|
|
|
docker build -t my_ocrd_workflow .
|