diff options
author | Xander <xander@biltopia.org> | 2023-10-22 12:31:51 +0200 |
---|---|---|
committer | Xander <xander@biltopia.org> | 2023-10-22 12:31:51 +0200 |
commit | 3ac0ecfec25617e5282f507de615c8ea5a29b69d (patch) | |
tree | 3c8539c026c5356947896cf751bfe576461f97ef /planetwars-server/src/modules | |
parent | ccee0f7ca6dc2b2542b84922d855f51204033b8a (diff) | |
download | planetwars.dev-3ac0ecfec25617e5282f507de615c8ea5a29b69d.tar.xz planetwars.dev-3ac0ecfec25617e5282f507de615c8ea5a29b69d.zip |
Add containerfile and fix all issues
Diffstat (limited to 'planetwars-server/src/modules')
-rw-r--r-- | planetwars-server/src/modules/client_api.rs | 2 | ||||
-rw-r--r-- | planetwars-server/src/modules/matches.rs | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/planetwars-server/src/modules/client_api.rs b/planetwars-server/src/modules/client_api.rs index 9c0bbe7..ac4394f 100644 --- a/planetwars-server/src/modules/client_api.rs +++ b/planetwars-server/src/modules/client_api.rs @@ -377,7 +377,7 @@ pub async fn run_client_api(runner_config: Arc<GlobalConfig>, pool: ConnectionPo runner_config, }; - let addr = SocketAddr::from(([127, 0, 0, 1], 50051)); + let addr = SocketAddr::from(([0, 0, 0, 0], 50051)); Server::builder() .add_service(pb::client_api_service_server::ClientApiServiceServer::new( server, diff --git a/planetwars-server/src/modules/matches.rs b/planetwars-server/src/modules/matches.rs index 489a9fa..f5f9f2a 100644 --- a/planetwars-server/src/modules/matches.rs +++ b/planetwars-server/src/modules/matches.rs @@ -141,8 +141,9 @@ pub fn bot_version_to_botspec( } fn python_docker_bot_spec(config: &GlobalConfig, code_bundle_path: &str) -> Box<dyn BotSpec> { - let code_bundle_rel_path = PathBuf::from(&config.bots_directory).join(code_bundle_path); - let code_bundle_abs_path = std::fs::canonicalize(&code_bundle_rel_path).unwrap(); + let code_bundle_abs_path = PathBuf::from("/home/planetwars/data/bots").join(code_bundle_path); + //let code_bundle_abs_path = std::fs::canonicalize(&code_bundle_rel_path).unwrap(); + println!("{}",code_bundle_abs_path.display()); let code_bundle_path_str = code_bundle_abs_path.as_os_str().to_str().unwrap(); // TODO: it would be good to simplify this configuration |