This Node.js application is for use in demonstrating Azure Container Registry Build (ACR Build), a suite of features within Azure Container Registry for performing Docker container builds on Azure.
This project includes three Dockerfiles:
- Dockerfile - Non-parameterized Dockerfile for building the application. References a base image in Docker Hub.
- Dockerfile-app - Parameterized, accepts the
REGISTRY_NAME
argument to specify the FQDN of the container registry from which the base image is pulled. - Dockerfile-base - Defines a base image for the application defined in Dockerfile-app.
This project is intended for use with the following articles on docs.microsoft.com:
- Build container images in the cloud with Azure Container Registry Build
- Automate container image builds with Azure Container Registry Build
- Automate image builds on base image update with Azure Container Registry Build
Although intended for use with the companion articles, you can perform the following steps to run the sample application. These steps require a local Docker installation.
git clone https://github.com/Azure-Samples/acr-build-helloworld-node
cd acr-build-helloworld-node
docker build -t helloacrbuild:v1 .
docker run -d -p 8080:80 helloacrbuild:v1
- Navigate to http://localhost:8080 to view the running application