Skip to content
This repository was archived by the owner on Jul 19, 2023. It is now read-only.

Fix broken canary container Dockerfile #80

Merged
merged 4 commits into from
Jan 21, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/images/Dockerfile.canary
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ RUN apt-get update && apt-get install -y curl \

RUN pip install awscli

# Install yq
RUN sudo add-apt-repository ppa:rmescandon/yq && apt update && apt install -y yq
# Add yq repository and install yq
RUN apt-get update && apt install -y software-properties-common && sudo add-apt-repository ppa:rmescandon/yq && apt update && apt install -y yq

# Install kubectl
RUN curl -o kubectl https://amazon-eks.s3-us-west-2.amazonaws.com/1.12.9/2019-06-21/bin/linux/amd64/kubectl \
Expand Down