Skip to content

Commit

Permalink
maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Reynolds committed Apr 29, 2024
1 parent 725b921 commit d0ff12c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion labapp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ EXPOSE 5000
ENV FLASK_APP app.py
ENV FLASK_RUN_HOST 0.0.0.0

CMD ["flask", "run"]
CMD ["flask", "run", "--host=0.0.0.0"]
2 changes: 1 addition & 1 deletion labapp/app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,4 +143,4 @@ def lb_azure():
return jsonify(status='fail', error=str(e))

if __name__ == '__main__':
app.run(debug=False, host='0.0.0.0', port=5000)
app.run(debug=False)

0 comments on commit d0ff12c

Please sign in to comment.