From 3367bc84bd8ed494ed64707aa70ab40fb69250af Mon Sep 17 00:00:00 2001 From: junjiequan Date: Sun, 7 Jul 2024 21:39:27 +0200 Subject: [PATCH] chore: Update Dockerfile to use custom matrix-react-sdk repository --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 017c7e48e26..b079ecf3612 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ FROM --platform=$BUILDPLATFORM node:22-bullseye as builder # Support custom branches of the react-sdk and js-sdk. This also helps us build # images of element-web develop. -ARG USE_CUSTOM_SDKS=false -ARG REACT_SDK_REPO="https://github.com/matrix-org/matrix-react-sdk.git" +ARG USE_CUSTOM_SDKS=true +ARG REACT_SDK_REPO="https://github.com/SciCatProject/matrix-react-sdk.git" ARG REACT_SDK_BRANCH="develop" ARG JS_SDK_REPO="https://github.com/matrix-org/matrix-js-sdk.git" ARG JS_SDK_BRANCH="master"