From c3ddac6a87b2b764479aa43e89fa2b8547dc2ae5 Mon Sep 17 00:00:00 2001 From: Sergey Kirichenko Date: Wed, 13 Mar 2024 15:33:29 +0300 Subject: [PATCH] Add feature for fixing build in github (#159) * Fix build ref * change reference for version in github repo --- install/docker/Dockerfile.app | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/docker/Dockerfile.app b/install/docker/Dockerfile.app index ddcaa8f96c2..8e5d525c3a6 100644 --- a/install/docker/Dockerfile.app +++ b/install/docker/Dockerfile.app @@ -39,7 +39,7 @@ RUN apt-get -y update && \ apt-get install -y nodejs && \ rm -rf /var/lib/apt/lists/* -ADD https://api.github.com/repos/ONLYOFFICE/DocSpace/git/refs/heads/${GIT_BRANCH} version.json +ADD https://api.github.com/repos/ONLYOFFICE/DocSpace-buildtools/git/refs/heads/${GIT_BRANCH} version.json RUN git clone -b ${GIT_BRANCH} https://github.com/ONLYOFFICE/DocSpace-buildtools.git ${SRC_PATH}/buildtools && \ git clone --recurse-submodules -b ${GIT_BRANCH} https://github.com/ONLYOFFICE/DocSpace-Server.git ${SRC_PATH}/server && \ git clone -b ${GIT_BRANCH} https://github.com/ONLYOFFICE/DocSpace-Client.git ${SRC_PATH}/client