Replies: 2 comments 1 reply
-
I just run into the same issue when trying to build a container rootlessly on a fresh Debian 12. Sure enough the file is not there. On my local Arch machine it is, and everything works 🤷 |
Beta Was this translation helpful? Give feedback.
0 replies
-
see #24318 (comment) The issue is that your client uses a different default from the server so it send the "incorrect" path. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am using the following https://gitlab.com/qontainers/pipglr
image to have a Gitlab runner which uses podman. I instructed the Gitlab runner to always mount the
/home/runner/podman.sock:/var/run/docker.sock:rw
to all job containers such that I can usepodman --remote
.In my CI so far I have a Job:
which builds and runs images remotely (it works) due to using
CONTAINER_HOST
(over containerpipglr
which is running on my NixOS host system (also with podman))I dont understand what happens when I switch to my own alpine image with the following slight modification (I basically want to build my own container with podman in it):
The Dockerfile can be as simple as:
Now I get the error:
I really dont understand where this error comes from and how to resolve it. Does it come from my host
pipglr
or is this error due to some missing files when building the image (I need to install some more stuff?).Thanks a lot for all hints and explanations whats happening.
Beta Was this translation helpful? Give feedback.
All reactions