Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump versions #304

Merged
merged 1 commit into from
Nov 27, 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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ RUN apk --no-cache add \
py3-pip \
py3-wheel \
python3 && \
pip install --upgrade pip==20.2.3
pip install --upgrade pip==20.2.4

# Install a YAML Linter
ARG yamllint_version=1.24.2
ARG yamllint_version=1.25.0
LABEL yamllint_version=$yamllint_version
RUN pip install "yamllint==$yamllint_version"

Expand All @@ -22,7 +22,7 @@ LABEL yamale_version=$yamale_version
RUN pip install "yamale==$yamale_version"

# Install kubectl
ARG kubectl_version=v1.19.2
ARG kubectl_version=v1.19.4
LABEL kubectl_version=$kubectl_version
RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$kubectl_version/bin/linux/amd64/kubectl" && \
chmod +x kubectl && \
Expand Down