fix: Listen on all interfaces
All checks were successful
Build Docker / BuildImage (push) Successful in 29s

This commit is contained in:
2024-06-03 12:32:45 +10:00
parent 92df431caf
commit 4eea90c32d

View File

@@ -98,4 +98,4 @@ def get_auctions():
if __name__ == "__main__": if __name__ == "__main__":
app.run(host="127.0.0.1", port=8080, debug=True) app.run(host="0.0.0.0", port=8080, debug=True)