The Dockerfiles in this repository are used for building and testing the .NET product. As such there are Dockerfiles for the various supported Linux distributions which setup the necessary prerequisites to build and test the .NET product.
The images produced from the Dockerfiles in this repository are published to the mcr.microsoft.com/dotnet-buildtools/prereqs
container repository.
The tag format used by the images from this repository is mcr.microsoft.com/dotnet-buildtools/prereqs:<os-name>-<os-version>-<variant>-<architecture>
<os-name>
- Name of the Linux distribution or Windows OS the image is based on<os-version>
- Version of the OS<variant>
- Name describing the specialization purpose of the image.
Often special dependencies are needed for certain parts of the product.
It can be beneficial to separate these dependencies into a separate Dockerfile/image.<architecture>
- Architecture of the OS (amd64 shall be implied if not specified).Examples:
There will be a need for modifying existing Dockerfiles or creating new ones. For example, when a new Linux distribution/version needs to be supported, a corresponding Dockerfile will need to be created. The following steps are a guideline for modifying/creating Dockerfiles.
Edit Dockerfiles
@dotnet/dotnet-docker-reviewers
as a secondary owner.
Team code owners must be assigned to each Dockerfile.
To learn about the expectations of the code owners, see the Code Owner Responsibilities.Validate the changes locally by running build.ps1.
It is strongly suggested to specify the -Paths
option to avoid the overhead of building all the images.
For example, if editing the Fedora 40 Dockerfile, then run the following command to build just that Dockerfile.
.\build.ps1 -Paths "*fedora/40/amd64*"
It is a good practice to use --dry-run
option on the first attempt to verify what commands will get run.
.\build.ps1 -Paths "*fedora/40/amd64*" -OptionalImageBuilderArgs "--dry-run"
Partial paths and wildcards in the -Paths
option are also supported. The following example will build all the Fedora Dockerfiles.
.\build.ps1 -Paths "*fedora/*"
To build a dependency graph when there are dependent images, multiple paths can be specified.
.\build.ps1 -Paths "*alpine/3.20/amd64*","*alpine/3.20/withnode/amd64*"
Alternatively, wildcards can by utilized to specify everything under a shared directory.
Using wildcards can sometimes cause extra images to be built outside of the dependency graph which may be undersirable.
In this case, it is recommended to utilize the multiple paths
approach.
.\build.ps1 -Paths "*alpine/3.20*"
Prepare a PR
The images from this repository get built and published whenever one of the following occurs:
FROM
statement).The images from this repo are being rebuilt continuously.
As such, in order to diagnose issues/regressions, it is sometimes necessary to be able to identity the specific image used in CI/Helix test runs.
This is useful when needing to examine a previously working version of the image.
The image tag will always reference the latest image version.
To examine an older image, you'll need to retrieve it via its digest which uniquely identifies that specific version of the image.
To retrieve the digest, identify the logic that pulls the image and inspect the output.
For example, to find the image digest of a containerized AzDO job, look at the output of the Initialize containers
step.
...
/usr/bin/docker pull mcr.microsoft.com/dotnet-buildtools/prereqs:cbl-mariner-2.0-fpm
cbl-mariner-2.0-fpm: Pulling from dotnet-buildtools/prereqs
63567fa8bd47: Pulling fs layer
a0bbb2e1d432: Pulling fs layer
a8b51056c91c: Pulling fs layer
a0bbb2e1d432: Verifying Checksum
a0bbb2e1d432: Download complete
63567fa8bd47: Verifying Checksum
63567fa8bd47: Download complete
63567fa8bd47: Pull complete
a8b51056c91c: Verifying Checksum
a8b51056c91c: Download complete
a0bbb2e1d432: Pull complete
a8b51056c91c: Pull complete
Digest: sha256:4dccac3bd646c9edd1f4645cc52828c8d24d66cfe7d8e8191e3c365d37a1c501
Status: Downloaded newer image for mcr.microsoft.com/dotnet-buildtools/prereqs:cbl-mariner-2.0-fpm
mcr.microsoft.com/dotnet-buildtools/prereqs:cbl-mariner-2.0-fpm
...
In this case the digest of the mcr.microsoft.com/dotnet-buildtools/prereqs:cbl-mariner-2.0-fpm
image at the time of this build run is sha256:4dccac3bd646c9edd1f4645cc52828c8d24d66cfe7d8e8191e3c365d37a1c501
.
You can pull this image by its digest via docker pull mcr.microsoft.com/dotnet-buildtools/prereqs@sha256:4dccac3bd646c9edd1f4645cc52828c8d24d66cfe7d8e8191e3c365d37a1c501
.
The Dockerfile that an image was built from can be found given the image digest. This is possible by searching version info for this repository.
$ git log -S"mcr.microsoft.com/dotnet-buildtools/prereqs@sha256:4dccac3bd646c9edd1f4645cc52828c8d24d66cfe7d8e8191e3c365d37a1c501" -- .\build-info\docker\image-info.dotnet-dotnet-buildtools-prereqs-docker-main.json
commit 199e0e1206404362c3aac6ba1bef15fa7cc290cc
Author: dotnet-docker-bot <dotnet-docker-bot@microsoft.com>
Date: Mon Aug 5 21:43:41 2024 +0000
Merging Docker image info updates from build
From this commit of the image-info.dotnet-dotnet-buildtools-prereqs-docker-main.json
, you can retrieve the Dockerfile's commitUrl
.
"platforms": [
{
"dockerfile": "src/cbl-mariner/2.0/fpm/amd64/Dockerfile",
"simpleTags": [
"cbl-mariner-2.0-fpm",
"cbl-mariner-2.0-fpm-20240805132320-2525e15"
],
"digest": "mcr.microsoft.com/dotnet-buildtools/prereqs@sha256:4dccac3bd646c9edd1f4645cc52828c8d24d66cfe7d8e8191e3c365d37a1c501",
"baseImageDigest": "mcr.microsoft.com/cbl-mariner/base/core@sha256:a490e0b0869dc570ae29782c2bc17643aaaad1be102aca83ce0b96e0d0d2d328",
"osType": "Linux",
"osVersion": "cbl-mariner2.0",
"architecture": "amd64",
"created": "2024-08-05T13:25:28.1215548Z",
"commitUrl": "https://github.com/dotnet/dotnet-buildtools-prereqs-docker/blob/2525e157e2c2abdd6aab2f0e5b511eb959a2b583/src/cbl-mariner/2.0/fpm/amd64/Dockerfile",
"layers": [
"sha256:a8b51056c91ca838379088fa3521b54d111c800dbe9870f2b4ad7ef57a70ce99",
"sha256:a0bbb2e1d432eb6e6dd939d2108dd21f4ed4ee27bd60c1c7e3d0edc1fc7ca833",
"sha256:63567fa8bd47def3e649849841c5f3be407237a44d8c9b6019ecb21cb0009348"
]
}
]
The folder structure used in src aligns with the tagging convention - <os-name>-<os-version>-<variant>-<architecture>
.
For example, the Dockerfile used to produce the mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.20
image is stored in the src/alpine/3.20/amd64 folder.
If a Dockerfile is shared across multiple architectures, then the <architecture>
folder should be omitted.
For example, the src\alpine\3.20\helix\Dockerfile is built for all supported architectures (amd64, arm64 and arm) therefore there is no architecture folder in its path.
The manifest.json contains metadata used by the build infrastructure to produce the container images. The metadata describes which Dockerfiles to build, what tags to produce, where to publish the images, etc. It is critical that the manifest gets updated appropriately when Dockerfiles are added/removed. The manifest at the root of the repo represents the global manifest. It has references to sub-manifests within each of the OS folders (e.g. src/alpine/manifest.json). When adding or modifying entries for Dockerfiles, those changes should be made to the appropriate OS-specific sub-manifest file. Each Dockerfile will have an entry that looks like the following.
{
"platforms": [
{
"dockerfile": "src/alpine/3.20/amd64",
"os": "linux",
"osVersion": "alpine3.20",
"tags": {
"alpine-3.20": {}
}
}
]
},
{
"platforms": [
{
"architecture": "arm64",
"dockerfile": "src/debian/12/helix/arm64v8",
"os": "linux",
"osVersion": "bookworm",
"tags": {
"debian-12-helix-arm64v8": {}
},
"variant": "v8"
}
]
},
architecture
- Architecture of the image: amd64 (default), arm, arm64dockerfile
- Relative path to the Dockerfile to buildos
- OS the image is based on: linux, windowsosVersion
- Version of the os
the image is based ontags
- Collection of tags to create for the imagevariant
- Architecture variant of the image[!Note] The position in manifest determines the sequence in which the image will be built.
Whenever a Dockerfile change is required:
The underlying tool used to build the Dockerfiles is called Image-Builder. Its source is located at dotnet/docker-tools
When a Dockerfile build break occurs the following steps are to be taken:
For any questions, please feel free to open an issue and mention @dotnet/dotnet-docker-reviewers.