summaryrefslogtreecommitdiff
path: root/openjdk-runtime/build
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2022-05-13 20:47:42 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2022-05-13 20:48:09 +0200
commita9074952662c7d71df98ddc0a7e4f7e33c29b4bc (patch)
treedcb96d8e34973f128df556b6afe9aa3b2ce8f849 /openjdk-runtime/build
parent335422b369f43596f5498a622f3440a102f67954 (diff)
Import from MulkCMS 2.
Change-Id: I8b2f6d4833ee606b59264b368df7110039b722d7
Diffstat (limited to 'openjdk-runtime/build')
-rwxr-xr-xopenjdk-runtime/build36
1 files changed, 36 insertions, 0 deletions
diff --git a/openjdk-runtime/build b/openjdk-runtime/build
new file mode 100755
index 0000000..01347d7
--- /dev/null
+++ b/openjdk-runtime/build
@@ -0,0 +1,36 @@
+#! /bin/sh
+# SPDX-FileCopyrightText: © 2022 Matthias Andreas Benkard <code@mail.matthias.benkard.de>
+#
+# SPDX-License-Identifier: GPL-3.0-or-later
+
+set -euo pipefail
+
+cd "$(dirname $(readlink -e "$0"))"
+
+image=docker.benkard.de/mulk/openjdk-runtime:latest
+use_kaniko=no
+
+./prepare
+
+if [[ "${use_kaniko}" == yes ]]; then
+ docker run \
+ --mount type=bind,src="$PWD",target=/workspace \
+ gcr.io/kaniko-project/warmer:latest \
+ --cache-dir=/workspace/cache \
+ --image=registry.access.redhat.com/ubi8/ubi-micro:latest \
+ --image=registry.access.redhat.com/ubi8/ubi-minimal:latest
+
+ docker run \
+ --mount type=bind,src="$PWD",target=/workspace \
+ --mount type=bind,src="$HOME/.docker",target=/root/.docker,ro=true \
+ gcr.io/kaniko-project/executor:latest \
+ --dockerfile Dockerfile \
+ --destination "${image}" \
+ --context dir:///workspace/ \
+ --cache=true \
+ --cache-ttl=16800h0m0s \
+ --reproducible=true
+else
+ docker build -t "${image}" .
+ docker push "${image}"
+fi