Skip to content

Commit

Permalink
Expose port 8080 instead of 5000
Browse files Browse the repository at this point in the history
  • Loading branch information
tonur committed Jan 18, 2024
1 parent 0b37f84 commit 373c97a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
app = Flask(__name__)

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

# Define Prometheus metrics
enable_scan_metric = os.environ.get('ENABLE_SCAN_METRIC', 'true').lower() == 'true'
Expand Down

0 comments on commit 373c97a

Please sign in to comment.