summaryrefslogtreecommitdiff
path: root/src/main/docker/runtime/build
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2022-05-14 21:19:55 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2022-05-18 21:45:51 +0200
commit4f7a7371e758c4ea00af22998a99b0d628aa070a (patch)
tree6b77fc11378fd998068bf235f69a1f08066524d5 /src/main/docker/runtime/build
parentd383b6af1cec499a91168e3a75bfdf4f87d650c2 (diff)
Remove runtime container image recipe (moved to “container-images” repository).
Change-Id: I35f3c0252b1002afd50e7f4bf9509fe2f5f3992b
Diffstat (limited to 'src/main/docker/runtime/build')
-rwxr-xr-xsrc/main/docker/runtime/build36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/main/docker/runtime/build b/src/main/docker/runtime/build
deleted file mode 100755
index 01347d7..0000000
--- a/src/main/docker/runtime/build
+++ /dev/null
@@ -1,36 +0,0 @@
-#! /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