diff --git a/dev/README_RELEASE_AIRFLOW.md b/dev/README_RELEASE_AIRFLOW.md index 6dce6e487c64a..7e6c16289e078 100644 --- a/dev/README_RELEASE_AIRFLOW.md +++ b/dev/README_RELEASE_AIRFLOW.md @@ -44,6 +44,7 @@ - [Publish release to SVN](#publish-release-to-svn) - [Prepare PyPI "release" packages](#prepare-pypi-release-packages) - [Manually prepare production Docker Image](#manually-prepare-production-docker-image) + - [Verify production images](#verify-production-images) - [Publish documentation](#publish-documentation) - [Notify developers of release](#notify-developers-of-release) - [Add release data to Apache Committee Report Helper](#add-release-data-to-apache-committee-report-helper) @@ -1041,6 +1042,18 @@ Preparing a release that is not in the latest branch: breeze release-prod-images --airflow-version "${VERSION}" --slim-images --skip-latest ``` +## Verify production images + +```shell script +for PYTHON in 3.7 3.8 3.9 3.10 +do + docker pull apache/airflow:${VERSION}-python${PYTHON} + breeze verify-prod-image --image-name apache/airflow:${VERSION}-python${PYTHON} +done +docker pull apache/airflow:${VERSION} +breeze verify-prod-image --image-name apache/airflow:${VERSION} +``` + ## Publish documentation