Fix kubectl container ENV
kubectl/Dockerfile was bitten by the interaction of FROM & ARG
- Redeclare
ARG
after theFROM
, so that it is accessible. - Add
ENV
with the value ofARG
for visibility indocker inspect
Reference: https://docs.docker.com/engine/reference/builder/#understand-how-arg-and-from-interact
Signed-off-by: Jason Plum jplum@gitlab.com
Edited by Jason Plum