Is possible pass arguments building a managed vm to use 'ARG' Docker command?.
In Dockerfile sets default value... ARG env="dev"
Building Docker container I can change this value... docker build -t test/app --build-arg env=pr .
I have two environments and I want deploy the managed vm with different configuration files in Dockerfile build process.
Thanks.