Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion citools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Run:
# docker run --rm -it test-image /bin/bash
###
FROM alpine:3.14
FROM alpine:3.15

LABEL vendor="cloud kats" \
maintainer="[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.go.task
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /go/src/github.com/telia-oss/github-pr-resource
RUN curl -sL https://taskfile.dev/install.sh | sh
RUN ./bin/task build

FROM alpine:3.14 as resource
FROM alpine:3.15 as resource
COPY --from=builder /go/src/github.com/telia-oss/github-pr-resource/build /opt/resource
RUN apk add --update --no-cache \
git \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.test.v1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN unset GOPATH && go test -v ./... && \
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o out/check ./cmd/check && \
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o out/in ./cmd/in && \
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o out/out ./cmd/out
FROM alpine:3.14
FROM alpine:3.15
RUN mkdir -p /opt/resource
COPY --from=builder /code/out/* /opt/resource/
ENV VERSION_FILE /opt/resource/version
Expand Down
2 changes: 1 addition & 1 deletion githound/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:1.17 as builder
RUN go get -u github.com/ezekg/git-hound \
&& go install github.com/ezekg/git-hound

FROM alpine:3.14
FROM alpine:3.15

LABEL vendor="cloud kats" \
maintainer="[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion jo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.14
FROM alpine:3.15

# enable edge repository
RUN sed -i '/edge/s/^#//' /etc/apk/repositories
Expand Down
2 changes: 1 addition & 1 deletion k8s-test-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
###
ARG bashver=5.0.17

FROM alpine:3.14 as builder
FROM alpine:3.15 as builder

ARG K8S_VERSION

Expand Down
2 changes: 1 addition & 1 deletion kubectl-helm-aws/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM lachlanevenson/k8s-helm:v3.7.1
FROM lachlanevenson/k8s-kubectl:v1.22.3


FROM alpine:3.14
FROM alpine:3.15
ENV AWSCLI_VERSION 1.17.10
RUN apk add -U --no-cache python3 ca-certificates \
&& pip3 install --no-cache-dir --upgrade pip \
Expand Down
2 changes: 1 addition & 1 deletion kubectl-helm-az/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM lachlanevenson/k8s-kubectl:v1.22.3
# We build our own base az alpine image becase all official images currently
# have security vulnerabilities (as of mcr.microsoft.com/azure-cli:2.0.64).
# Ref: https://github.com/Azure/azure-cli/issues/9167
FROM alpine:3.14
FROM alpine:3.15
ENV AZ 2.0.64
RUN apk add -U python3 bash ca-certificates && \
apk add --virtual=build gcc python3-dev musl-dev libffi-dev openssl-dev make && \
Expand Down
2 changes: 1 addition & 1 deletion kubectl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Run:
# docker run --rm -it kubectl /bin/bash
###
FROM alpine:3.14
FROM alpine:3.15

# renovate: datasource=github-releases depName=kubernetes/kubectl
ENV KUBECTL_VERSION=v0.19.0
Expand Down
2 changes: 1 addition & 1 deletion repo-supervisor/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.14
FROM alpine:3.15

LABEL maintainer="Ivan Katliarchuk <[email protected]>"

Expand Down
2 changes: 1 addition & 1 deletion terraform/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TERRAFORM_VERSION

FROM hashicorp/terraform:${TERRAFORM_VERSION} as source

FROM alpine:3.14
FROM alpine:3.15

LABEL vendor="cloud kats" \
maintainer="[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion terragrunt/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
###
FROM hashicorp/terraform:1.0.11 as terraform

FROM alpine:3.14
FROM alpine:3.15

LABEL vendor="cloud kats" \
maintainer="[email protected]" \
Expand Down
2 changes: 1 addition & 1 deletion trufflehog/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.14
FROM alpine:3.15

LABEL vendor="cloud kats" \
maintainer="[email protected]"
Expand Down