Skip to content

Commit f787e76

Browse files
committed
Adding new endpoint for fargate
1 parent dc2ee29 commit f787e76

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

docker_quickstart.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,9 @@
55
def hello_world():
66
return 'Flask Dockerized. Hello World! 3!'
77

8+
@app.route('/flaskfargatedemo')
9+
def hello_fargate():
10+
return 'Hell Fargate!'
11+
812
if __name__ == '__main__':
913
app.run(debug=True,host='0.0.0.0')

0 commit comments

Comments
 (0)