You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support all/most of the docker buildx build CLI arguments when calling either tern sbom -f Dockerfile or tern lock -f Dockerfile. tern builds the Dockerfile itself for most features to work, but doesn't support any of the arguments necessary to do so.
Use Cases
Almost all non-trivial builds using docker build or docker buildx build have CLI arguments to set things like --buildarg, --target, and --tag (among others). Currently tern requires it be the image builder for tern lock or tern sbom -f Dockerfile.
Implementation Changes
Presumably either all docker buildx build arguments need to be replicated so they can be captured and passed thru, or all unrecognized arguments to a tern command that's going to run a docker build need to be passed thru.
The text was updated successfully, but these errors were encountered:
Describe the Feature
Support all/most of the
docker buildx build
CLI arguments when calling eithertern sbom -f Dockerfile
ortern lock -f Dockerfile
.tern
builds the Dockerfile itself for most features to work, but doesn't support any of the arguments necessary to do so.Use Cases
Almost all non-trivial builds using
docker build
ordocker buildx build
have CLI arguments to set things like--buildarg
,--target
, and--tag
(among others). Currentlytern
requires it be the image builder fortern lock
ortern sbom -f Dockerfile
.Implementation Changes
Presumably either all
docker buildx build
arguments need to be replicated so they can be captured and passed thru, or all unrecognized arguments to a tern command that's going to run a docker build need to be passed thru.The text was updated successfully, but these errors were encountered: