From f9fb530c11f21ed00a25e660b4bd53fb75f2ed54 Mon Sep 17 00:00:00 2001
From: mgiessing <marvin.giessing@gmail.com>
Date: Thu, 17 Feb 2022 22:55:57 +0100
Subject: [PATCH] Update Dockerfile

Add ppc64le support
---
 Dockerfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Dockerfile b/Dockerfile
index e1171f93..e6963e32 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -31,6 +31,7 @@ ARG BUILDPLATFORM
 RUN case ${TARGETPLATFORM} in \
          "linux/amd64")  GOARCH=amd64  ;; \
          "linux/arm64")  GOARCH=arm64  ;; \
+         "linux/ppc64le")  GOARCH=ppc64le  ;; \
          "linux/arm/v6") GOARCH=arm GOARM=6  ;; \
     esac && \
     printf "Building OAuth2 Proxy for arch ${GOARCH}\n" && \