From e497d14bc48f6b6eeae6c36d34300063cf6882ca Mon Sep 17 00:00:00 2001 From: Deepak Prabhakara Date: Fri, 20 Oct 2023 23:59:23 +0100 Subject: [PATCH] updated node, updated acs url to https://sso.eu.boxyhq.com/api/oauth/saml --- Dockerfile | 2 +- pages/saml/login.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8f8b130..588b71c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG NODEJS_IMAGE=node:18.17.1-alpine3.18 +ARG NODEJS_IMAGE=node:18.18.2-alpine3.18 FROM --platform=$BUILDPLATFORM $NODEJS_IMAGE AS base FROM base AS deps diff --git a/pages/saml/login.tsx b/pages/saml/login.tsx index a9d2002..c4bbc91 100644 --- a/pages/saml/login.tsx +++ b/pages/saml/login.tsx @@ -10,7 +10,7 @@ export default function Login() { const [state, setState] = useState({ username: 'jackson', domain: 'example.com', - acsUrl: 'https://jackson-demo.boxyhq.com/api/oauth/saml', + acsUrl: 'https://sso.eu.boxyhq.com/api/oauth/saml', audience: 'https://saml.boxyhq.com', }); @@ -91,7 +91,7 @@ export default function Login() { id='acsUrl' ref={acsUrlInp} autoComplete='off' - placeholder='https://jackson-demo.boxyhq.com/api/oauth/saml' + placeholder='https://sso.eu.boxyhq.com/api/oauth/saml' value={state.acsUrl} onChange={handleChange} />