dockerfile - installing az cli
This is a quite handy in case we needed to copy and paste to dockerfile.
# Base image
FROM ubuntu:20.04
# Packages required to run the Azure CLI installation
RUN apt-get update && apt-get -y install curl
# Azure installation command
RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash
Comments