mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-06 19:35:18 -05:00
fixes for dolt Docker images and ORM integration tests (#4871)
This commit is contained in:
@@ -13,4 +13,5 @@ RUN tar zxvf dolt-linux-${BUILDARCH}.tar.gz && \
|
||||
cp dolt-linux-${BUILDARCH}/bin/dolt /usr/local/bin && \
|
||||
rm -rf dolt-linux-${BUILDARCH} dolt-linux-${BUILDARCH}.tar.gz
|
||||
|
||||
WORKDIR /var/lib/dolt
|
||||
ENTRYPOINT ["tini", "--", "/usr/local/bin/dolt"]
|
||||
|
||||
@@ -58,7 +58,7 @@ get_config_file_path_if_exists() {
|
||||
FILE_TYPE=$2
|
||||
if [ -d "$CONFIG_DIR" ]; then
|
||||
mysql_note "Checking for config provided in $CONFIG_DIR"
|
||||
number_of_files_found=( `find .$CONFIG_DIR -type f -name "*.$FILE_TYPE" | wc -l` )
|
||||
number_of_files_found=( `find $CONFIG_DIR -type f -name "*.$FILE_TYPE" | wc -l` )
|
||||
if [ $number_of_files_found -gt 1 ]; then
|
||||
CONFIG_PROVIDED=
|
||||
mysql_warn "multiple config file found in $CONFIG_DIR, using default config"
|
||||
|
||||
Reference in New Issue
Block a user