Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
NBayer
/
docker-test
like
0
Runtime error
App
Files
Files
Community
a452ee5
docker-test
/
app.py
NBayer
Update app.py
fa06cc1
almost 2 years ago
raw
Copy download link
history
blame
Safe
193 Bytes
from
flask
import
Flask
app = Flask(__name__)
@app.route(
"/"
)
def
index
():
return
"Hello Flask users here on HF Spaces "
if
__name__ ==
"__main__"
:
app.run(port=
5000
, host=
"0.0.0.0"
)