From b82593b9cca1f030fa6b272ecb4dc56dae4aa9a0 Mon Sep 17 00:00:00 2001 From: tooptoop4 <33283496+tooptoop4@users.noreply.github.com> Date: Sat, 10 Sep 2022 20:59:54 +1000 Subject: [PATCH] Update base docker image to alpine 3.16 (#1788) * Update Dockerfile * Update CHANGELOG.md --- CHANGELOG.md | 2 ++ Dockerfile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d87139c3..8f3512a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,8 @@ to remain consistent with CLI flags. You should specify `code_challenge_method` - [#1762](https://github.com/oauth2-proxy/oauth2-proxy/pull/1762) Support negating for skip auth routes +- [#1788](https://github.com/oauth2-proxy/oauth2-proxy/pull/1788) Update base docker image to alpine 3.16 + # V7.3.0 ## Release Highlights diff --git a/Dockerfile b/Dockerfile index bf90a6c0..207aed43 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # This ARG has to be at the top, otherwise the docker daemon does not known what to do with FROM ${RUNTIME_IMAGE} -ARG RUNTIME_IMAGE=alpine:3.15 +ARG RUNTIME_IMAGE=alpine:3.16 # All builds should be done using the platform native to the build node to allow # cache sharing of the go mod download step.