feat(docker): add support for no-cache builds and tag built images for local dependency resolution

This commit is contained in:
2026-02-06 13:25:21 +00:00
parent 32eb0d1d77
commit c09bef33c3
6 changed files with 42 additions and 7 deletions

View File

@@ -1,5 +1,14 @@
# Changelog
## 2026-02-06 - 1.6.0 - feat(docker)
add support for no-cache builds and tag built images for local dependency resolution
- Introduce IBuildCommandOptions.noCache to control --no-cache behavior
- Propagate noCache from CLI (via cache flag) through TsDockerManager to Dockerfile.build
- Append --no-cache to docker build/buildx commands when noCache is true
- After building an image, tag it with full base image references used by dependent Dockerfiles so their FROM lines resolve to the locally-built image
- Log tagging actions and execute docker tag via smartshellInstance
## 2026-02-06 - 1.5.0 - feat(build)
add support for selective builds, platform override and build timeout