Avi Deitcher

Results 79 issues of Avi Deitcher

I found this by playing with various options in golang `cmd := exec.Command("runc")` and changing `cmd.Stdout`, etc. to try and capture output from a container run. It works if I...

Fixes #3906 Makes `-trimpath` optional by calling it as ```sh make runc TRIMPATH= ``` The default mode is unchanged. Comments in the Makefile make it clear that this may still...

### Description `go build -trimpath` makes the `-X` ldflags disappear. The `runc` build command [from the Makefile](https://github.com/opencontainers/runc/blob/main/Makefile#L27-L29) looks like this: ```makefile GO_BUILD := $(GO) build -trimpath $(GO_BUILDMODE) \ $(EXTRA_FLAGS) -tags...

The new `ToplogicalSort()`, based on its `StableTopologicalSort()`, has really large performance degradation. A program that used to take 42s, now takes 220-300s (sometimes more), with the vast majority of the...

bug
help wanted

**Description** Mounting a loopback device in a container requires `CAP=SYS_ADMIN` or even better `--privileged`. However, the `/dev/loop*` do not appear in the container when created dynamically. This is particularly a...

kind/question
kind/enhancement

Is there a way to get consistent (or nearly consistent) comparable output? My specific use case is that we have protobufs, and expect to have the graph files checked into...

**What would you like to be added**: Syft is able to scan directory, as well as a tar file as if it were a directory, so I can do `syft...

enhancement

**What would you like to be added**: How can I tell syft, "add this data to the SBoM you generate"? Scenario: I have data that I know syft will not...

enhancement

Signed-off-by: Avi Deitcher **- What I did** Added support for `--build-arg` to `lkt pkg build`, passing them on to `docker build --build-arg` **- How I did it** Added the command...

**Description** Every container image built by `lkt pkg build` adds a few standard tags in the config, including git commit, etc. One of those tags is `org.opencontainers.image.source`. `lkt pkg build`...