Skip to content

Commit

Permalink
feat: add az aks install-cli step (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelpadovezi authored Dec 17, 2024
1 parent ab58199 commit 4999106
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,9 @@ RUN apt-get update && apt-get install -y \
ENV DISPLAY=:99
ENV CHROME_FLAGS "--no-sandbox --disable-gpu"

Check warning on line 60 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

# Instalar o kubectl
RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" \
&& install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl

# Instalar o Azure CLI (az)
RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash
# Instalar o Azure CLI (az), kubectl and kubelogin
RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash \
&& az aks install-cli

# Instalar dependências do Cypress

Expand Down

0 comments on commit 4999106

Please sign in to comment.