From 15dfa5e8a2e672464e376ac2bb193bfb0b56a30b Mon Sep 17 00:00:00 2001 From: junjiequan Date: Sun, 7 Jul 2024 21:48:46 +0200 Subject: [PATCH] chore: Update Dockerfile to use default SDKs and remove unnecessary lines --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e5b3a0d0da7..852b4b969a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,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=true -# ARG REACT_SDK_REPO="https://github.com/SciCatProject/matrix-react-sdk.git" -# ARG REACT_SDK_BRANCH="master" +ARG REACT_SDK_REPO="https://github.com/SciCatProject/matrix-react-sdk.git" +ARG REACT_SDK_BRANCH="master" ARG JS_SDK_REPO="https://github.com/matrix-org/matrix-js-sdk.git" ARG JS_SDK_BRANCH="master"