From e191d11f7421d5833e3d83815c6b84be585abccb Mon Sep 17 00:00:00 2001 From: princeyogesh Date: Sat, 22 Feb 2025 10:47:11 +0530 Subject: [PATCH] before docker run command added git submoulde update command in docker build Updated README.md (#10878) there is dependency on submodule libs/hbb_common, we need to initialize submodule after cloning repo and before running container --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3e468e090..912c73a7d 100644 --- a/README.md +++ b/README.md @@ -127,6 +127,7 @@ Begin by cloning the repository and building the Docker container: ```sh git clone https://github.com/rustdesk/rustdesk cd rustdesk +git submodule update --init --recursive docker build -t "rustdesk-builder" . ```