You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ocrd-galley/build

15 lines
277 B
Bash

#!/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 .