Skip to content

Commit fa7fb8d

Browse files
Merge pull request #275293 from Albertyang0/Broken-links-fix-msangapu
Fix broken links - msangapu
2 parents 65be2dd + 0cd3f68 commit fa7fb8d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ ENV ASPNETCORE_URLS "http://*:${PORT}"
7070
ENTRYPOINT ["dotnet", "/defaulthome/hostingstart/hostingstart.dll"]
7171
```
7272

73-
In this Dockerfile, the parent image is one of the built-in .NET containers of App Service. You can find the source files for it [in the Azure-App-Service/ImageBuilder GitHub repository, under GenerateDockerFiles/dotnetcore](https://github.com/Azure-App-Service/ImageBuilder/tree/master/GenerateDockerFiles/dotnetcore). Its [Dockerfile](https://github.com/Azure-App-Service/ImageBuilder/blob/master/GenerateDockerFiles/dotnetcore/debian-9/Dockerfile) copies a simple .NET app into `/defaulthome/hostingstart`. Your Dockerfile simply starts that app.
73+
In this Dockerfile, the parent image is one of the built-in .NET containers of App Service.
7474

7575
# [Node.js](#tab/node)
7676

@@ -85,7 +85,7 @@ EXPOSE 8080
8585
ENTRYPOINT ["pm2", "start", "--no-daemon", "/opt/startup/default-static-site.js"]
8686
```
8787

88-
In this Dockerfile, the parent image is one of the built-in Node.js containers of App Service. You can find the source files for it [in the Azure-App-Service/ImageBuilder GitHub repository, under GenerateDockerFiles/node/node-template](https://github.com/Azure-App-Service/ImageBuilder/tree/master/GenerateDockerFiles/node/node-template). Its [Dockerfile](https://github.com/Azure-App-Service/ImageBuilder/blob/master/GenerateDockerFiles/node/node-template/Dockerfile) copies a simple Node.js app into `/opt/startup`. Your Dockerfile simply starts that app using PM2, which is already installed by the parent image.
88+
In this Dockerfile, the parent image is one of the built-in Node.js containers of App Service.
8989

9090
# [Python](#tab/python)
9191

@@ -99,7 +99,7 @@ EXPOSE 8080
9999
ENTRYPOINT ["gunicorn", "--timeout", "600", "--access-logfile", "'-'", "--error-logfile", "'-'", "--chdir=/opt/defaultsite", "application:app"]
100100
```
101101

102-
In this Dockerfile, the parent image is one of the built-in Python containers of App Service. You can find the source files for it [in the Azure-App-Service/ImageBuilder GitHub repository, under GenerateDockerFiles/python/template-3.9](https://github.com/Azure-App-Service/ImageBuilder/tree/master/GenerateDockerFiles/python/template-3.9). Its [Dockerfile](https://github.com/Azure-App-Service/ImageBuilder/blob/master/GenerateDockerFiles/python/template-3.9/Dockerfile) copies a simple Python app into `/opt/defaultsite`. Your Dockerfile simply starts that app using Gunicorn, which is already installed by the parent image.
102+
In this Dockerfile, the parent image is one of the built-in Python containers of App Service.
103103

104104
# [Java](#tab/java)
105105

0 commit comments

Comments
 (0)