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

chore: bump alpine to 3.21.2 #16

Merged
merged 3 commits into from
Feb 28, 2025
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
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ format:

licenses:
@echo "No license checks necessary in this repository (yet)."

.PHONY: docker
docker:
docker build -t oryd/k8s-toolbox:dev -f docker/Dockerfile .
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM alpine:3.21
FROM alpine:3.21.3

ARG USER=ory
ARG BUILD_ARCH=amd64
ENV HOME=/home/$USER
ENV JQ_VERSION=1.7.1
ENV KUBECTL_VERSION=1.31.2
ENV KUBECTL_VERSION=1.32.2

RUN apk add --no-cache --update-cache --upgrade --latest \
RUN apk add --no-cache --update-cache --upgrade \
ca-certificates curl netcat-openbsd coreutils bash inotify-tools procps

RUN curl -Lo /usr/local/bin/jq "https://github.com/stedolan/jq/releases/download/jq-${JQ_VERSION}/jq-linux-${BUILD_ARCH}" &&\
Expand Down
3 changes: 2 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
],
"prHourlyLimit": 5
}
Loading