Skip to content

Commit 56737b7

Browse files
Troubleshoot formatting.
1 parent 0297bbc commit 56737b7

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

articles/app-service/includes/quickstart-custom-container/quickstart-custom-container-linux-visual-studio-code-pivot.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ docker --version
5656

5757
# [.NET](#tab/dotnet)
5858

59+
In this Dockerfile, the parent image is one of the built-in .NET containers of App Service.
60+
5961
<!-- https://mcr.microsoft.com/v2/appsvc%2Fdotnetcore/tags/list -->
6062
```dockerfile
6163
FROM mcr.microsoft.com/appsvc/dotnetcore:lts
@@ -68,10 +70,10 @@ docker --version
6870
ENTRYPOINT ["dotnet", "/defaulthome/hostingstart/hostingstart.dll"]
6971
```
7072

71-
In this Dockerfile, the parent image is one of the built-in .NET containers of App Service.
72-
7373
# [Node.js](#tab/node)
7474

75+
In this Dockerfile, the parent image is one of the built-in Node.js containers of App Service.
76+
7577
<!-- https://mcr.microsoft.com/v2/appsvc%2Fnode/tags/list -->
7678
```dockerfile
7779
FROM mcr.microsoft.com/appsvc/node:10-lts
@@ -83,10 +85,10 @@ docker --version
8385
ENTRYPOINT ["pm2", "start", "--no-daemon", "/opt/startup/default-static-site.js"]
8486
```
8587

86-
In this Dockerfile, the parent image is one of the built-in Node.js containers of App Service.
87-
8888
# [Python](#tab/python)
8989

90+
In this Dockerfile, the parent image is one of the built-in Python containers of App Service.
91+
9092
<!-- https://mcr.microsoft.com/v2/appsvc%2Fpython/tags/list -->
9193
```dockerfile
9294
FROM mcr.microsoft.com/appsvc/python:latest
@@ -97,10 +99,10 @@ docker --version
9799
ENTRYPOINT ["gunicorn", "--timeout", "600", "--access-logfile", "'-'", "--error-logfile", "'-'", "--chdir=/opt/defaultsite", "application:app"]
98100
```
99101

100-
In this Dockerfile, the parent image is one of the built-in Python containers of App Service.
101-
102102
# [Java](#tab/java)
103103

104+
In this Dockerfile, the parent image is one of the built-in Java containers of App Service. You can find the source files for it at [java/tree/dev/java11-alpine](https://github.com/Azure-App-Service/java/tree/dev/java11-alpine). Its [Dockerfile](https://github.com/Azure-App-Service/java/blob/dev/java11-alpine/Dockerfile) copies a simple Java app into `/tmp/appservice`. Your Dockerfile starts that app.
105+
104106
<!-- https://mcr.microsoft.com/v2/azure-app-service%2Fjava/tags/list -->
105107
```dockerfile
106108
FROM mcr.microsoft.com/azure-app-service/java:11-java11_stable
@@ -111,7 +113,6 @@ docker --version
111113
ENTRYPOINT ["java", "-Dserver.port=80", "-jar", "/tmp/appservice/parkingpage.jar"]
112114
```
113115

114-
In this Dockerfile, the parent image is one of the built-in Java containers of App Service. You can find the source files for it at [java/tree/dev/java11-alpine](https://github.com/Azure-App-Service/java/tree/dev/java11-alpine). Its [Dockerfile](https://github.com/Azure-App-Service/java/blob/dev/java11-alpine/Dockerfile) copies a simple Java app into `/tmp/appservice`. Your Dockerfile starts that app.
115116
---
116117

117118
1. [Open the Command Palette](https://code.visualstudio.com/docs/getstarted/userinterface#_command-palette), and type **Docker Images: Build Image**. Select **Enter** to run the command.

0 commit comments

Comments
 (0)