docker fix
All checks were successful
Release Workflow / Build Docker image (push) Successful in 2m0s

This commit is contained in:
John Doe
2026-01-31 11:41:09 -05:00
parent 44384b0258
commit 220bfa2649

View File

@@ -160,6 +160,13 @@ jobs:
- name: Build and push image
id: build-and-push
run: |
# Ensure Docker client API version is not pinned too low
if [ -n "${DOCKER_API_VERSION}" ]; then
echo "Overriding DOCKER_API_VERSION=${DOCKER_API_VERSION}"
fi
export DOCKER_API_VERSION=1.53
echo "Using DOCKER_API_VERSION=$DOCKER_API_VERSION"
echo "Building image with docker build..."
echo "Tags: ${{ steps.meta.outputs.tags }}"