mirror of
https://github.com/qurator-spk/ocrd-galley.git
synced 2025-06-09 06:39:53 +02:00
12 lines
214 B
Bash
Executable file
12 lines
214 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
|
|
)
|
|
|
|
docker build -t my_ocrd_workflow .
|