fix(DOCKER): remove docker db import using bash (#12773)

* fix(DOCKER): remove docker db import using bash

* remove db-import command
This commit is contained in:
Patrick Lewis
2022-08-18 11:53:25 -07:00
committed by GitHub
parent d4b3de773d
commit 635c79f141
2 changed files with 2 additions and 13 deletions

View File

@@ -2,8 +2,6 @@
CUR_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
IMPORT_DB=$1
source "$CUR_PATH/docker-build-prod.sh"
echo "Fixing EOL..."
@@ -14,5 +12,3 @@ for file in "env/dist/etc/"*
do
dos2unix -n $file $file
done
[[ $IMPORT_DB != 0 ]] && bash acore.sh db-assembler import-all || true