Update 'face_recognition/app/app.py'

This commit is contained in:
fabrice 2019-06-08 17:11:05 +00:00
parent bcb325b721
commit 25bdc2d6d0

View File

@ -0,0 +1,8 @@
app = Flask(__name__)
@app.route('/')
def hello_docker():
return 'Hello, I run in a docker container'
if __name__ == '__main__':
app.run(host='0.0.0.0')