From 473b0d24070f5ef08ec5fac078b7ace866eb276d Mon Sep 17 00:00:00 2001 From: mlradu Date: Thu, 29 Aug 2024 12:24:16 +0300 Subject: [PATCH] build-docker.sh: add execute permissions Signed-off-by: mlradu --- README.md | 6 ++++++ build-docker.sh | 0 2 files changed, 6 insertions(+) mode change 100644 => 100755 build-docker.sh diff --git a/README.md b/README.md index 67032c702c..0b882848eb 100644 --- a/README.md +++ b/README.md @@ -258,6 +258,12 @@ To build: sudo bash build-docker.sh ``` +or + +```bash +sudo ./build-docker.sh +``` + Your Kuiper image will be in the `kuiper-volume/` folder inside the cloned repository on you machine. After successful build, the docker image and the build container are removed if `PRESERVE_CONTAINER=n`. If needed, you can remove the build container with: diff --git a/build-docker.sh b/build-docker.sh old mode 100644 new mode 100755