Merge pull request #530 from schwabelbauch/master

Fix issue where additional tesseract langages weren't installed by docker-entrypoint.sh
This commit is contained in:
ahyear 2019-04-01 11:29:11 +02:00 committed by GitHub
commit 7687e7ca53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,7 +82,7 @@ install_languages() {
if apk info -e "$pkg" > /dev/null 2>&1; then
continue
fi
if ! apk info "$pkg" > /dev/null 2>&1; then
if ! apk --no-cache info "$pkg" > /dev/null 2>&1; then
continue
fi