img icon indicating copy to clipboard operation
img copied to clipboard

Standalone, daemon-less, unprivileged Dockerfile and OCI compatible container image builder.

Results 108 img issues
Sort by recently updated
recently updated
newest added

when running `img build -s -f Dockerfile -t .`, it failes on COPY command. once `-s ` is taken, it can build successfully. ``` #11 [compilation 4/8] COPY . /go/src/github.com/...

needs more info

Is there a way to get support for `--add-host` similar to Docker's implementation where at build time you can alter the hosts file which is not persisted past build time?

enhancement

https://github.com/giuseppe/crun runtime is a c written alternative to runc with seems to work fine, but used with img it fails because of the version check img is doing. ``` /...

**Command** : img save --format oci -o image-app.tar image-app:latest **Img version** : 0.5.7 **Env** : Kubernetes (tested OK with img downgraded to 0.5.6...) Stacktrace : ... #10 exporting to image...

bug

Hi! I have no idea how I achieved this, but `img` seems to be crashing my kubernetes control-plane. ## Context **Cluster**: Newly created Minikube (Kubernetes 1.15) **`img` pod**: ```yaml apiVersion:...

question
needs more info

Is it possible to force unpack to write to an existing and not empty directory? I have some images which should be combined to a single rootfs, but img stops...

enhancement

I tried unpacking an image using: `img unpack hello_img -o hello` The output was: `Successfully unpacked rootfs for hello_img to: /home/rusty/test_containers/rootfs` The output directory was still named rootfs. The --output...

needs more info

Hi, I tested img because I searching for a small binary to just pull and unpack docker images. If the image isn't pulled before I get an error message during...

enhancement

**Environment**: img v0.5.6 **Description**: Same Dockerfile, change the base-image part, failed COPY when building image. `img build -t node1:5000/imgtest/api-1:v1 . ` **Success:** ``` FROM alpine COPY ./model /usr/lib/model ``` **Failed:**...

I have a Gitlab project that builds up a docker container with a python app. The build process was working just fine while using the dind runner: Step 4/8 :...

bug