Was following the conversation in this thread Conditional COPY/ADD in Dockerfile?.
I have a requirement to check AND conditions like this:
IF Environment = development and Region = East : Do this
IF Environment = development and Region = West : Do this
IF Environment = production and Region = East : Do this
IF Environment = production and Region = East : Do this
How would I achieve this?