feat(Dockerfile.deps): switch to python:alpine base image #758
+6
−4
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.
What this PR does / why we need it:
This change will avoid using the
Microsoft Azure CLI
Docker image, because the newer versions containAzure Linux
operating system instead ofAlpine
. This change in operating system can cause issues for users building on top of this image. Therefore introducing a breaking change, which I think we should try to avoid.I used this GitHub issue for reference: Azure/azure-cli#19591
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes # The new
mcr.microsoft.com/azure-cli:2.67.0
Docker image has migrated to usingAzure Linx
instead ofAlpine
for the underlying operating system: https://learn.microsoft.com/en-us/cli/azure/run-azure-cli-docker?view=azure-cli-latestThis causes the current
Dockerfile.deps
to fail during thegoreleaser
GitHub Action:https://github.com/fidelity/kconnect/actions/runs/13575743025/job/37951438546
Testing
I created a Pre-release tag on this
bugfix
branch to make sure that these changes would pass thegoreleaser
GitHub Action.https://github.com/fidelity/kconnect/actions/runs/13640814861
This branch can be deleted once it is merged.