diff --git a/opendbm/api_lib/util.py b/opendbm/api_lib/util.py index bf40b771..f443574b 100644 --- a/opendbm/api_lib/util.py +++ b/opendbm/api_lib/util.py @@ -131,8 +131,8 @@ def docker_command_dec(fn): def inner(*args, **kwargs): wsl_cmd, path = wsllize((args[1])) - - check_docker_model_exist(wsl_cmd, "dbm-openface") + openface_repo = "opendbmteam/dbm-openface" + check_docker_model_exist(wsl_cmd, openface_repo) create_docker = wsl_cmd + [ "docker", @@ -140,7 +140,7 @@ def docker_command_dec(fn): "-ti", "--name", "dbm_container", - "dbm-openface", + openface_repo, "bash", ] diff --git a/setup.py b/setup.py index e713fe35..d65bc555 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,3 @@ -# Copyright (C) 2012-2022 james jameson if __name__ == "__main__":