How remove inherited variable in Dockerfile?
How can I remove an environment variable inherited from a base image? For example, when using: image "myimage:a": FROM alpine ENV hello=world I can override the variable in the descendant image like this: image "myimage:b": FROM myimage:a ENV hello=none And…