Skip to content

Commit e27032b

Browse files
committed
Minor tweaks to readme
1 parent 5433305 commit e27032b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if __name__ == '__main__':
2222
app.run()
2323
```
2424

25-
Now let's create a dockerfile for the app, we'll use an alpine linux container with an nginx web server.
25+
Now let's create a dockerfile for the app, we'll use an Alpine Linux container with an NGINX web server. Put the following in a file named `Dockerfile`:
2626

2727
```Dockerfile
2828
FROM tiangolo/uwsgi-nginx-flask:python3.6-alpine3.7
@@ -108,8 +108,10 @@ az webapp config container set --name <app_name> --resource-group FlaskApp --doc
108108
```
109109

110110
Run the following command to set the port number on the site and restart it:
111-
`az webapp config appsettings set --name <app name> --resource-group FlaskApp --settings WEBSITES_PORT=8000
112-
az webapp restart --name <app name> --resource-group DockerLab`
111+
```
112+
az webapp config appsettings set --name <app name> --resource-group FlaskApp --settings WEBSITES_PORT=8000
113+
az webapp restart --name <app name> --resource-group DockerLab
114+
```
113115

114116
Browse to the web app at ```http://<app_name>.azurewebsites.net```
115117

0 commit comments

Comments
 (0)