diff --git a/CHANGELOG.md b/CHANGELOG.md index cd67d135..ba00ca1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,8 @@ ## Changes since v7.2.0 -- [#1433](https://github.com/oauth2-proxy/oauth2-proxy/pull/1433) Let authentication fail when session validation fails ((@stippi2) +- [#1433](https://github.com/oauth2-proxy/oauth2-proxy/pull/1433) Let authentication fail when session validation fails (@stippi2) +- [#1445](https://github.com/oauth2-proxy/oauth2-proxy/pull/1445) Fix docker container multi arch build issue by passing GOARCH details to make build (@jkandasa) # V7.2.0 diff --git a/Dockerfile b/Dockerfile index 1ebe7a87..80aab81c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,7 @@ RUN case ${TARGETPLATFORM} in \ "linux/arm/v6") GOARCH=arm GOARM=6 ;; \ esac && \ printf "Building OAuth2 Proxy for arch ${GOARCH}\n" && \ - VERSION=${VERSION} make build && touch jwt_signing_key.pem + GOARCH=${GOARCH} VERSION=${VERSION} make build && touch jwt_signing_key.pem # Copy binary to alpine FROM alpine:3.14