Image size down to 1.15GB, 14 layers. Files and scripts move to a docker root fs instead of copied. Debian slim 9.8. Updated to Docker best practices. Signed-off-by: Anderson Santiago <SantiagoGitlab@gmail.com>
11 lines
263 B
Bash
Executable File
11 lines
263 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
apt-get update
|
|
apt-get install -y --no-install-recommends tesseract-ocr-deu
|
|
|
|
$MAYAN_PIP_BIN install -r ${MAYAN_INSTALL_DIR}/requirements-testing.txt
|
|
|
|
$MAYAN_BIN test --mayan-apps --settings=mayan.settings.testing
|