Name and Version
public.ecr.aws/bitnami/kaniko:latest
What steps will reproduce the bug?
Bitnami's Kaniko latest tag was updated between February 27 and March 2, 2026, introducing a breaking change that causes Alpine-based Docker builds to fail with symlink errors.
Environment:
- Image:
public.ecr.aws/bitnami/kaniko:latest
- Working version:
public.ecr.aws/bitnami/kaniko:1.25.9
- Base image in Dockerfile:
python:alpine3.23
- Build tool: GitLab CI/CD
Timeline:
- February 27, 2026: Builds successful with
kaniko:latest
- March 2, 2026: Same builds failing with
kaniko:latest
- March 2, 2026: Pinning to
1.25.9 resolves the issue
Error observed:
ERRO[0036] Couldn't eval /etc/dpkg/origins/debian with link /etc/dpkg/origins/debian
Steps to reproduce:
- Use Dockerfile with Alpine base image (e.g.,
python:alpine3.23)
- Build with
public.ecr.aws/bitnami/kaniko:latest
- Observe symlink-related errors during build
Workaround:
Pin to version 1.25.9: public.ecr.aws/bitnami/kaniko:1.25.9
Request:
- Document what changed between v1.25.9 and current latest
- Provide release notes for latest tag updates
- Consider semantic versioning for breaking changes
What is the expected behavior?
The latest tag should maintain backward compatibility or clearly document breaking changes.
What do you see instead?
Alpine-based builds that worked with v1.25.9 fail with the current latest tag.
ERRO[0036] Couldn't eval /etc/dpkg/origins/debian with link /etc/dpkg/origins/debian
The build completes but the resulting Docker image is incomplete - some symlinked files are missing from the final image. This causes the Alpine-based Python application to fail when deployed.
Specifically:
- Kaniko logs show symlink evaluation errors during the build
- The build appears to complete but with errors
- The pushed image is missing expected files/symlinks
- The same Dockerfile that worked with kaniko:1.25.9 now fails with kaniko:latest
This regression occurred between February 27 and March 2, 2026, when the latest tag was updated.
Additional information
No response
Name and Version
public.ecr.aws/bitnami/kaniko:latest
What steps will reproduce the bug?
Bitnami's Kaniko
latesttag was updated between February 27 and March 2, 2026, introducing a breaking change that causes Alpine-based Docker builds to fail with symlink errors.Environment:
public.ecr.aws/bitnami/kaniko:latestpublic.ecr.aws/bitnami/kaniko:1.25.9python:alpine3.23Timeline:
kaniko:latestkaniko:latest1.25.9resolves the issueError observed:
ERRO[0036] Couldn't eval /etc/dpkg/origins/debian with link /etc/dpkg/origins/debian
Steps to reproduce:
python:alpine3.23)public.ecr.aws/bitnami/kaniko:latestWorkaround:
Pin to version
1.25.9:public.ecr.aws/bitnami/kaniko:1.25.9Request:
What is the expected behavior?
The
latesttag should maintain backward compatibility or clearly document breaking changes.What do you see instead?
Alpine-based builds that worked with v1.25.9 fail with the current
latesttag.ERRO[0036] Couldn't eval /etc/dpkg/origins/debian with link /etc/dpkg/origins/debian
The build completes but the resulting Docker image is incomplete - some symlinked files are missing from the final image. This causes the Alpine-based Python application to fail when deployed.
Specifically:
This regression occurred between February 27 and March 2, 2026, when the latest tag was updated.
Additional information
No response