Clean up the dockerfile a bit
Docker / build-and-push-image (push) Successful in 52m10s

This commit is contained in:
Jon Staab
2026-06-03 15:32:48 -07:00
parent 43eaad1621
commit 5f8b08e02c
4 changed files with 39 additions and 36 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ async fn main() -> Result<()> {
billing.start().await;
});
let url = format!("127.0.0.1:{}", env::get().server_port);
let url = format!("0.0.0.0:{}", env::get().server_port);
let listener = tokio::net::TcpListener::bind(url).await?;
axum::serve(listener, app).await?;