Skip to content

Commit

Permalink
update python/pip
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Panato <[email protected]>

update yaml lint to 1.21.0

Signed-off-by: Carlos Panato <[email protected]>
  • Loading branch information
cpanato committed Aug 10, 2020
1 parent 847c34a commit 4832e30
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@ RUN apk --no-cache add \
git \
libc6-compat \
openssh-client \
python \
py-crcmod \
py-pip && \
pip install --upgrade pip==18.1
py3-pip \
py3-wheel \
python3 && \
pip install --upgrade pip==20.2.1

# Install a YAML Linter
ARG YAML_LINT_VERSION=1.13.0
ARG YAML_LINT_VERSION=1.24.2
RUN pip install "yamllint==$YAML_LINT_VERSION"

# Install Yamale YAML schema validator
ARG YAMALE_VERSION=1.8.0
ARG YAMALE_VERSION=3.0.2
RUN pip install "yamale==$YAMALE_VERSION"

# Install kubectl
ARG KUBECTL_VERSION=v1.16.10
ARG KUBECTL_VERSION=v1.18.6
RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$KUBECTL_VERSION/bin/linux/amd64/kubectl" && \
chmod +x kubectl && \
mv kubectl /usr/local/bin/
Expand Down

0 comments on commit 4832e30

Please sign in to comment.