Skip to content

Commit 3d19a6e

Browse files
committed
built-in Linux image changes
1 parent 40faec1 commit 3d19a6e

File tree

5 files changed

+14
-17
lines changed

5 files changed

+14
-17
lines changed

Dockerfile

Lines changed: 0 additions & 6 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Python Flask app on Azure Web App for Containers
22

3-
This is a minimal sample app that demonstrates how to run a Python Flask application on Azure Web App for Containers.
3+
This is a minimal sample app that demonstrates how to run a Python Flask application on Azure App Service on Linux.
44

5-
For more information, please see the [Python on App Service Quickstart docs](https://docs.microsoft.com/en-us/azure/app-service/containers/quickstart-python).
5+
For more information, please see the [Python on App Service quickstart](https://docs.microsoft.com/en-us/azure/app-service/containers/quickstart-python).
66

77
# Contributing
88

app/main.py

Lines changed: 0 additions & 9 deletions
This file was deleted.

application.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from flask import Flask
2+
app = Flask(__name__)
3+
4+
@app.route("/")
5+
def hello():
6+
return "Hello World!"

requirements.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
click==6.7
2+
Flask==1.0.2
3+
itsdangerous==0.24
4+
Jinja2==2.10
5+
MarkupSafe==1.0
6+
Werkzeug==0.14.1

0 commit comments

Comments
 (0)