This repository was archived by the owner on May 27, 2025. It is now read-only.
Replies: 1 comment 1 reply
-
We do have an issue for It sounds like your top priority is just to be able to see the |
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.
-
Docker, Podman, and Singularity all have inspect features with varying utility. The most important use of these in my experience has been to extract the ENTRYPOINT of a container image when the original Dockerfile is not available. Because entrypoint is not a supported feature in charliecloud, in order to actually use some images, I have to inspect the container image with podman or singularity to get a copy of the entrypoint and paste it into a regular executable file. For example, NVIDIA container registry publishes a number of images that we really use all the time in production, such as LAMMPS, which has an entrypoint. Unfortunately, the source for the nvidia registry is not open. I do not know any way to view NVIDIA's original Dockerfiles. Probably, this is intentional. I wouldn't be surprised if there are trade secrets in there.
It doesn't really make sense to install Podman just to get access to Podman inspect, if I am going to continue to use ch-image for build operations anyways. It would be nice if there was a ch-image inspect that could give me the information I needed. I suppose it would also be acceptable if charliecloud just supported the ENTRYPOINT feature. I don't know which is easier to implement.
Beta Was this translation helpful? Give feedback.
All reactions