Skip to content

Commit e740dbc

Browse files
aaronbapaullizer
andauthored
Update app.py (#359)
* Update app.py Super tactical fix to allow ChainGuard container to start * updated to v0.215.38 --------- Co-authored-by: Paul Lizer <paullizer@microsoft.com>
1 parent 225d558 commit e740dbc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

application/single_app/app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,4 +223,5 @@ def acceptable_use_policy():
223223
if __name__ == '__main__':
224224
settings = get_settings()
225225
initialize_clients(settings)
226-
app.run(debug=False)
226+
app.run(host="0.0.0.0", port=5000, debug=False)
227+

application/single_app/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787

8888
app.config['SECRET_KEY'] = os.getenv("SECRET_KEY")
8989
app.config['SESSION_TYPE'] = 'filesystem'
90-
app.config['VERSION'] = '0.215.037'
90+
app.config['VERSION'] = '0.215.038'
9191
Session(app)
9292

9393
CLIENTS = {}

0 commit comments

Comments
 (0)