Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jananivMS committed May 7, 2020
1 parent ca275cb commit ba63035
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions devops/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ FROM mcr.microsoft.com/azure-cli

LABEL maintainer="Microsoft Corporation"

RUN az login --service-principal -u "${AZURE_CLIENT_ID}" -p="${AZURE_CLIENT_SECRET}" --tenant "${AZURE_TENANT_ID}" && \
az account set -s "${AZURE_SUBSCRIPTION_ID}" && \
az aks get-credentials -n "${CLUSTERNAME}" -g "${RESOURCEGROUP}" --admin
RUN az login --service-principal -u $AZURE_CLIENT_ID -p=$AZURE_CLIENT_SECRET --tenant $AZURE_TENANT_ID && \
az account set -s $AZURE_SUBSCRIPTION_ID && \
az aks get-credentials -n $CLUSTERNAME -g $RESOURCEGROUP --admin

WORKDIR /

Expand Down

0 comments on commit ba63035

Please sign in to comment.