Skip to content
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 k8s-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
# docker run --rm -it test /bin/bash
###
FROM cloudkats/k8s-test-tools:1.17.9 as tools
FROM cloudkats/helm:3.8.2 as helm
FROM alpine:3.15 as downloader
FROM cloudkats/helm:3.9.0 as helm
FROM alpine:3.16 as downloader

# hadolint ignore=DL3018,DL3019
RUN apk update && apk add --no-cache ca-certificates \
Expand All @@ -28,7 +28,7 @@ ARG YQ_BINARY=yq_linux_amd64
RUN wget --progress=dot:giga https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/${YQ_BINARY} -O /usr/bin/yq &&\
chmod +x /usr/bin/yq

FROM alpine:3.15
FROM alpine:3.16

LABEL org.opencontainers.image.authors="[email protected]" \
org.opencontainers.image.vendor="https://github.com/cloudkats" \
Expand Down