dmartincy's picture
Dockerfile new style
db9f671
Raw
History Blame
190 Bytes
from flask import Flask
app = Flask(__name__)
@app.route('/')
def home():
return "PostgreSQL is running with Flask!"
if __name__ == '__main__':
app.run(host='0.0.0.0', port=7860)