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