Skip to content

Commit 0d1e5b5

Browse files
author
RoseHJM
committed
Added overall steps and updated FROM heading in each article
1 parent 31929c5 commit 0d1e5b5

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

articles/deployment-environments/how-to-configure-extensibility-bicep-container-image.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,14 @@ The ADE CLI is a tool that allows you to build custom images by using ADE base i
3131

3232
In this example, you learn how to build a Docker image to utilize ADE deployments and access the ADE CLI, basing your image off of one of the ADE authored images.
3333

34-
### FROM statement
34+
To build an image configured for ADE, follow these steps:
35+
1. Base your image on an ADE-authored sample image or the image of your choice by using the FROM statement.
36+
1. Install any necessary packages for your image by using the RUN statement.
37+
1. Create a *scripts* folder at the same level as your Dockerfile, store your *deploy.sh* and *delete.sh* files within it, and ensure those scripts are discoverable and executable inside your created container. This step is necessary for your deployment to work using the ADE core image.
38+
1. Build and push your image to your container registry, and ensure it's accessible to ADE.
39+
1. Reference your image in the `runner` property of your environment definition.
40+
41+
### Select a sample container image by using the FROM statement
3542

3643
Include a FROM statement within a created DockerFile for your new image pointing to a sample image hosted on Microsoft Artifact Registry.
3744

articles/deployment-environments/how-to-configure-extensibility-generic-container-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To build an image configured for ADE, follow these steps:
3838
1. Build and push your image to your container registry, and ensure it's accessible to ADE.
3939
1. Reference your image in the `runner` property of your environment definition.
4040

41-
### Select an image by using the FROM statement
41+
### Select a sample container image by using the FROM statement
4242

4343
To build a Docker image to utilize ADE deployments and access the ADE CLI, you should base your image on one of the ADE-authored images. Including a FROM statement within a created DockerFile for your new image that points to an ADE-authored sample image hosted on Microsoft Artifact Registry. When using ADE-authored images, it's recommended you build your custom image on the ADE core image.
4444

articles/deployment-environments/how-to-configure-extensibility-terraform-container-image.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,14 @@ The ADE CLI is a tool that allows you to build custom images by using ADE base i
3131

3232
In this example, you learn how to build a Docker image to utilize ADE deployments and access the ADE CLI, basing your image on one of the ADE authored images.
3333

34-
### FROM statement
34+
To build an image configured for ADE, follow these steps:
35+
1. Base your image on an ADE-authored sample image or the image of your choice by using the FROM statement.
36+
1. Install any necessary packages for your image by using the RUN statement.
37+
1. Create a *scripts* folder at the same level as your Dockerfile, store your *deploy.sh* and *delete.sh* files within it, and ensure those scripts are discoverable and executable inside your created container. This step is necessary for your deployment to work using the ADE core image.
38+
1. Build and push your image to your container registry, and ensure it's accessible to ADE.
39+
1. Reference your image in the `runner` property of your environment definition.
40+
41+
### Select a sample container image by using the FROM statement
3542

3643
Include a FROM statement within a created DockerFile for your new image pointing to a sample image hosted on Microsoft Artifact Registry.
3744

0 commit comments

Comments
 (0)