CC: @achauphan, @sebrowne
Description
I just noticed that the dockerfiles are point to the latest versions of upstream redhat images like seen at:
|
FROM registry.access.redhat.com/ubi9:latest |
That means that every time you run podman build you may get as different behaving image.
Would it make more sense to use an ARG to set this base image and fix a specific default version in the wrapper build scripts? Then you should get identical images if you build the same image a year later?
CC: @achauphan, @sebrowne
Description
I just noticed that the dockerfiles are point to the latest versions of upstream redhat images like seen at:
containers/dockerfiles/clang-openmpi/Dockerfile
Line 1 in 34ce1a3
That means that every time you run
podman buildyou may get as different behaving image.Would it make more sense to use an ARG to set this base image and fix a specific default version in the wrapper build scripts? Then you should get identical images if you build the same image a year later?