You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
897 B
30 lines
897 B
From 16bd293b0387766fdb85af9d57ad281c1bc2784b Mon Sep 17 00:00:00 2001
|
|
From: Sergey Cherevko <s.cherevko@msvsphere-os.ru>
|
|
Date: Wed, 17 Jul 2024 16:12:31 +0300
|
|
Subject: [PATCH] MSVSphere modify tini.installer
|
|
|
|
---
|
|
engine/hack/dockerfile/install/tini.installer | 4 +---
|
|
1 file changed, 1 insertion(+), 3 deletions(-)
|
|
|
|
diff --git a/engine/hack/dockerfile/install/tini.installer b/engine/hack/dockerfile/install/tini.installer
|
|
index febceb1..ef9ad8b 100755
|
|
--- a/engine/hack/dockerfile/install/tini.installer
|
|
+++ b/engine/hack/dockerfile/install/tini.installer
|
|
@@ -7,11 +7,9 @@
|
|
|
|
install_tini() {
|
|
echo "Install tini version $TINI_VERSION"
|
|
- git clone https://github.com/krallin/tini.git "$GOPATH/tini"
|
|
cd "$GOPATH/tini"
|
|
git checkout -q "$TINI_VERSION"
|
|
cmake .
|
|
make tini-static
|
|
- mkdir -p "${PREFIX}"
|
|
- cp tini-static "${PREFIX}/docker-init"
|
|
+ cp tini-static "docker-init"
|
|
}
|
|
--
|
|
2.43.5
|
|
|