fixed the flask service binding to localhost instead of 0.0.0.0, preventing it from being connected to outside of a docker container
Some checks failed
Docker Build / Build (push) Successful in 27s
Linter / Lint (3.11) (push) Failing after 44s

This commit is contained in:
Seaswimmer 2023-11-25 05:30:37 -05:00
parent ceaa76823b
commit a13dba19ad
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -49,4 +49,4 @@ def hello():
return render_template('hello.html', name="Flask")
if __name__ == '__main__':
app.run(host="localhost", port=config['port'], debug=True)
app.run(host="0.0.0.0", port=config['port'], debug=True)