Skip to content

Commit

Permalink
fix migrate_db.py path in entrypoint (#10535)
Browse files Browse the repository at this point in the history
  • Loading branch information
nr23730 authored Feb 12, 2024
1 parent ef5c8fd commit 23ebb38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/web-and-data/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ migrate_db() {
if [[ -f $CUSTOM_PROPERTIES_FILE ]]; then
python3 /core/scripts/migrate_db.py -y -p $CUSTOM_PROPERTIES_FILE -s /cbioportal/db-scripts/migration.sql
else
python3 /core/migrate_db.py -y -p <(parse_db_params_from_config_and_command_line $POTENTIAL_DB_PARAMS) -s /cbioportal/db-scripts/migration.sql
python3 /core/scripts/migrate_db.py -y -p <(parse_db_params_from_config_and_command_line $POTENTIAL_DB_PARAMS) -s /cbioportal/db-scripts/migration.sql
fi
}

Expand Down

0 comments on commit 23ebb38

Please sign in to comment.