Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ COPY <<"EOF" /install_os_dependencies.sh
#!/usr/bin/env bash
set -euo pipefail

DOCKER_CLI_VERSION=20.10.9
DOCKER_CLI_VERSION=24.0.6

if [[ "$#" != 1 ]]; then
echo "ERROR! There should be 'runtime' or 'dev' parameter passed as argument.".
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ COPY <<"EOF" /install_os_dependencies.sh
#!/usr/bin/env bash
set -euo pipefail

DOCKER_CLI_VERSION=20.10.9
DOCKER_CLI_VERSION=24.0.6

if [[ "$#" != 1 ]]; then
echo "ERROR! There should be 'runtime' or 'dev' parameter passed as argument.".
Expand Down
2 changes: 2 additions & 0 deletions docs/docker-stack/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ Airflow 2.7
The selection of MySQL Client libraries only available on AMD64 (x86_64) for ARM docker image it will always install
MariaDB client.

* Docker CLI version in the image is bumped to 24.0.6 version.

* 2.7.0

* As of now, Python 3.7 is no longer supported by the Python community. Therefore, to use Airflow 2.7.0, you must ensure your Python version is
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker/install_os_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# shellcheck shell=bash
set -euo pipefail

DOCKER_CLI_VERSION=20.10.9
DOCKER_CLI_VERSION=24.0.6

if [[ "$#" != 1 ]]; then
echo "ERROR! There should be 'runtime' or 'dev' parameter passed as argument.".
Expand Down