From 2f1e6232787b875c794f5b361d64bf89d6c7e946 Mon Sep 17 00:00:00 2001 From: William Petit Date: Sun, 21 Jun 2020 14:24:35 +0200 Subject: [PATCH] =?UTF-8?q?Utilisation=20du=20fork=20de=20super-graph=20po?= =?UTF-8?q?ur=20la=20compatibilit=C3=A9=20avec=20Hydra?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Principalement dans l'optique de gérer: - Le champ `audience` au format tableau, voir https://forge.cadoles.com/wpetit/super-graph/commit/b37171c19f7b827ad89505161974a3f989e2490f - La validation des jetons JWT via un endpoint JWKS, voir https://forge.cadoles.com/wpetit/super-graph/commit/788f0459fbf8455ef8c3e09935a1538352bb4f02 --- misc/containers/super-graph/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/containers/super-graph/Dockerfile b/misc/containers/super-graph/Dockerfile index 2e2ce94..46727da 100644 --- a/misc/containers/super-graph/Dockerfile +++ b/misc/containers/super-graph/Dockerfile @@ -5,12 +5,12 @@ ARG HTTPS_PROXY= ARG http_proxy= ARG https_proxy= -ARG SUPERGRAPH_VERSION=v0.14.17 +ARG SUPERGRAPH_VERSION=hydra-compat ARG WAITFORIT_VERSION=v2.4.1 RUN apk add --no-cache go make git curl bash ca-certificates -RUN git clone https://github.com/dosco/super-graph \ +RUN git clone https://forge.cadoles.com/wpetit/super-graph.git \ && export PATH="$PATH:/root/go/bin" \ && export CGO_ENABLED=0 \ && cd super-graph \