-
Notifications
You must be signed in to change notification settings - Fork 787
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BUG: caching does not work correctly with ARG #1507
Comments
@h-vetinari which buildah version are you using? I am on 1.8-dev and this is working fine for me.
|
@umohnani8 Closing since this issue is now solved. |
[Continuing from #1456; containers/podman#2250]
Using the following dockerfile (say,
podman_test.dockrf
):and build using
sudo podman -t podman_test -f podman_test.dockrf .
.Afterwards, uncomment the
RUN
line and build again. The package is chosen to normally require user interaction, which would be suppressed at installation time byDEBIAN_FRONTEND=noninteractive
. But while the build says:it ends up running into an error that's plainly due to
DEBIAN_FRONTEND
not being set:Using
--no-cache
, the build succeeds.The text was updated successfully, but these errors were encountered: