-
Notifications
You must be signed in to change notification settings - Fork 1
Expand list of Docker images #66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
marcosbento
wants to merge
9
commits into
main
Choose a base branch
from
task/expand_docker_image_list
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
083ecef
Add Debian 12 CI images
marcosbento e5d4448
Add Debian 13 CI images
marcosbento 8e29e10
Add Rocky Linux 9 CI images
marcosbento 9acea90
Add Rocky Linux 10 CI images
marcosbento 9342974
Add Fedora 43 CI images
marcosbento b2fa8c7
Add Fedora 44 CI images
marcosbento fbc7081
Add Ubuntu 22.04 CI images
marcosbento 87f2b53
Add Ubuntu 26.04 CI images
marcosbento 04fd477
Keep HPC transfer test compatible with Python 3.11
marcosbento File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,84 @@ | ||
| # syntax=docker/dockerfile:1 | ||
| # SPDX-FileCopyrightText: 2026 European Centre for Medium-Range Weather Forecasts (ECMWF) | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # Published as eccr.ecmwf.int/public-ci-images/debian12-base | ||
| # Shared foundation: every other public-images/debian12/* image FROMs this. | ||
| # Built/pushed by .github/workflows/images.yml (see IMAGES.md). | ||
| FROM debian:12 | ||
|
|
||
| ENV DEBIAN_FRONTEND=noninteractive | ||
| ENV PIP_BREAK_SYSTEM_PACKAGES=1 | ||
|
|
||
| # Debian 12 provides Python 3.11, which meets ci-infrastructure's minimum. | ||
| # Its CMake 3.25 does not meet the 3.26 floor required by the submodules, so a | ||
| # pinned CMake is installed with pip below and takes precedence from /usr/local. | ||
| RUN apt-get update && apt-get install -y \ | ||
| sudo \ | ||
| git \ | ||
| bison \ | ||
| flex \ | ||
| curl \ | ||
| wget \ | ||
| ca-certificates \ | ||
| gnupg \ | ||
| cmake \ | ||
| ninja-build \ | ||
| jq \ | ||
| unzip \ | ||
| zstd \ | ||
| lsb-release \ | ||
| software-properties-common \ | ||
| build-essential \ | ||
| python3 \ | ||
| python3-dev \ | ||
| python3-pip \ | ||
| python3-venv \ | ||
| python3-pytest \ | ||
| python-is-python3 \ | ||
| libssl-dev \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
|
|
||
| RUN python3 -m pip install --no-cache-dir cmake==3.31.6 | ||
|
|
||
| # Install GitHub CLI (gh) from its upstream apt repository. | ||
| RUN mkdir -p /etc/apt/keyrings \ | ||
| && curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg \ | ||
| | tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null \ | ||
| && chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg \ | ||
| && echo "deb [arch=$(dpkg --print-architecture) \ | ||
| signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] \ | ||
| https://cli.github.com/packages stable main" \ | ||
| > /etc/apt/sources.list.d/github-cli.list \ | ||
| && apt-get update \ | ||
| && apt-get install -y gh \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
|
|
||
| # Install ci-infrastructure from the repository build context. Keep this | ||
| # non-editable so the installed package remains after the source tree is removed. | ||
| COPY pyproject.toml LICENSE /opt/ci-infrastructure/ | ||
| COPY src /opt/ci-infrastructure/src | ||
| RUN python3 -m pip install --no-cache-dir "/opt/ci-infrastructure[all]" \ | ||
| && rm -rf /opt/ci-infrastructure | ||
|
|
||
| ENV CI_INFRASTRUCTURE_PYTHON=/usr/bin/python3 | ||
|
|
||
| ARG SOURCE_REVISION="" | ||
| ENV CI_INFRASTRUCTURE_BAKED_REF=${SOURCE_REVISION} | ||
|
|
||
| ENTRYPOINT [] | ||
| CMD [] | ||
| WORKDIR /workspace | ||
|
|
||
| COPY public-images/announce-image.sh /opt/ci/announce-image.sh | ||
| ENV BASH_ENV=/opt/ci/announce-image.sh | ||
|
|
||
| # Self-description must be re-declared by every descendant image. | ||
| ARG IMAGE_NAME="" | ||
| ARG IMAGE_TAG="" | ||
| ARG IMAGE_CREATED="" | ||
| ARG IMAGE_DOCKERFILE_URL="" | ||
| ENV CI_IMAGE_NAME=${IMAGE_NAME} \ | ||
| CI_IMAGE_TAG=${IMAGE_TAG} \ | ||
| CI_IMAGE_CREATED=${IMAGE_CREATED} \ | ||
| CI_IMAGE_DOCKERFILE_URL=${IMAGE_DOCKERFILE_URL} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| # syntax=docker/dockerfile:1 | ||
| # SPDX-FileCopyrightText: 2026 European Centre for Medium-Range Weather Forecasts (ECMWF) | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # Published as eccr.ecmwf.int/public-ci-images/debian12-gfortran12-boost-qt6 | ||
| # Built/pushed by .github/workflows/images.yml (see IMAGES.md). | ||
| # | ||
| # This variant installs its complete toolchain directly on the shared base. The | ||
| # image workflow supports only base -> variant dependency chains. | ||
| FROM eccr.ecmwf.int/public-ci-images/debian12-base:latest | ||
|
|
||
| ENV DEBIAN_FRONTEND=noninteractive | ||
| ENV PIP_BREAK_SYSTEM_PACKAGES=1 | ||
|
|
||
| # Debian 12 provides the required Qt 6 components, including Charts for | ||
| # ECFLOW_LOGVIEW and Core5Compat for APIs retained from Qt 5. | ||
| RUN apt-get update && apt-get install -y \ | ||
| gcc-12 \ | ||
| g++-12 \ | ||
| gfortran-12 \ | ||
| libboost-all-dev \ | ||
| qt6-base-dev \ | ||
| qt6-svg-dev \ | ||
| qt6-5compat-dev \ | ||
| qt6-charts-dev \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
|
|
||
| # Self-description must be re-declared by every descendant image. | ||
| ARG IMAGE_NAME="" | ||
| ARG IMAGE_TAG="" | ||
| ARG IMAGE_CREATED="" | ||
| ARG IMAGE_DOCKERFILE_URL="" | ||
| ENV CI_IMAGE_NAME=${IMAGE_NAME} \ | ||
| CI_IMAGE_TAG=${IMAGE_TAG} \ | ||
| CI_IMAGE_CREATED=${IMAGE_CREATED} \ | ||
| CI_IMAGE_DOCKERFILE_URL=${IMAGE_DOCKERFILE_URL} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| # syntax=docker/dockerfile:1 | ||
| # SPDX-FileCopyrightText: 2026 European Centre for Medium-Range Weather Forecasts (ECMWF) | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # Published as eccr.ecmwf.int/public-ci-images/debian12-gfortran12 | ||
| # Built/pushed by .github/workflows/images.yml (see IMAGES.md). | ||
| FROM eccr.ecmwf.int/public-ci-images/debian12-base:latest | ||
|
|
||
| ENV DEBIAN_FRONTEND=noninteractive | ||
| ENV PIP_BREAK_SYSTEM_PACKAGES=1 | ||
|
|
||
| # Bookworm's native compiler generation, exposed under the versioned names used | ||
| # by downstream manifests. | ||
| RUN apt-get update && apt-get install -y \ | ||
| gcc-12 \ | ||
| g++-12 \ | ||
| gfortran-12 \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
|
|
||
| # Self-description must be re-declared by every descendant image. | ||
| ARG IMAGE_NAME="" | ||
| ARG IMAGE_TAG="" | ||
| ARG IMAGE_CREATED="" | ||
| ARG IMAGE_DOCKERFILE_URL="" | ||
| ENV CI_IMAGE_NAME=${IMAGE_NAME} \ | ||
| CI_IMAGE_TAG=${IMAGE_TAG} \ | ||
| CI_IMAGE_CREATED=${IMAGE_CREATED} \ | ||
| CI_IMAGE_DOCKERFILE_URL=${IMAGE_DOCKERFILE_URL} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,80 @@ | ||
| # syntax=docker/dockerfile:1 | ||
| # SPDX-FileCopyrightText: 2026 European Centre for Medium-Range Weather Forecasts (ECMWF) | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # Published as eccr.ecmwf.int/public-ci-images/debian13-base | ||
| # Shared foundation: every other public-images/debian13/* image FROMs this. | ||
| # Built/pushed by .github/workflows/images.yml (see IMAGES.md). | ||
| FROM debian:13 | ||
|
|
||
| ENV DEBIAN_FRONTEND=noninteractive | ||
| ENV PIP_BREAK_SYSTEM_PACKAGES=1 | ||
|
|
||
| # Debian 13 provides Python 3.13 and CMake 3.31, so the complete base toolchain | ||
| # can come from the distribution repositories. | ||
| RUN apt-get update && apt-get install -y \ | ||
| sudo \ | ||
| git \ | ||
| bison \ | ||
| flex \ | ||
| curl \ | ||
| wget \ | ||
| ca-certificates \ | ||
| gnupg \ | ||
| cmake \ | ||
| ninja-build \ | ||
| jq \ | ||
| unzip \ | ||
| zstd \ | ||
| lsb-release \ | ||
| build-essential \ | ||
| python3 \ | ||
| python3-dev \ | ||
| python3-pip \ | ||
| python3-venv \ | ||
| python3-pytest \ | ||
| python-is-python3 \ | ||
| libssl-dev \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
|
|
||
| # Install GitHub CLI (gh) from its upstream apt repository. | ||
| RUN mkdir -p /etc/apt/keyrings \ | ||
| && curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg \ | ||
| | tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null \ | ||
| && chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg \ | ||
| && echo "deb [arch=$(dpkg --print-architecture) \ | ||
| signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] \ | ||
| https://cli.github.com/packages stable main" \ | ||
| > /etc/apt/sources.list.d/github-cli.list \ | ||
| && apt-get update \ | ||
| && apt-get install -y gh \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
|
|
||
| # Install ci-infrastructure from the repository build context. Keep this | ||
| # non-editable so the installed package remains after the source tree is removed. | ||
| COPY pyproject.toml LICENSE /opt/ci-infrastructure/ | ||
| COPY src /opt/ci-infrastructure/src | ||
| RUN python3 -m pip install --no-cache-dir "/opt/ci-infrastructure[all]" \ | ||
| && rm -rf /opt/ci-infrastructure | ||
|
|
||
| ENV CI_INFRASTRUCTURE_PYTHON=/usr/bin/python3 | ||
|
|
||
| ARG SOURCE_REVISION="" | ||
| ENV CI_INFRASTRUCTURE_BAKED_REF=${SOURCE_REVISION} | ||
|
|
||
| ENTRYPOINT [] | ||
| CMD [] | ||
| WORKDIR /workspace | ||
|
|
||
| COPY public-images/announce-image.sh /opt/ci/announce-image.sh | ||
| ENV BASH_ENV=/opt/ci/announce-image.sh | ||
|
|
||
| # Self-description must be re-declared by every descendant image. | ||
| ARG IMAGE_NAME="" | ||
| ARG IMAGE_TAG="" | ||
| ARG IMAGE_CREATED="" | ||
| ARG IMAGE_DOCKERFILE_URL="" | ||
| ENV CI_IMAGE_NAME=${IMAGE_NAME} \ | ||
| CI_IMAGE_TAG=${IMAGE_TAG} \ | ||
| CI_IMAGE_CREATED=${IMAGE_CREATED} \ | ||
| CI_IMAGE_DOCKERFILE_URL=${IMAGE_DOCKERFILE_URL} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.