forked from quarkusio/quarkus-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quarkus-native-binary-s2i.yaml
46 lines (39 loc) · 1017 Bytes
/
quarkus-native-binary-s2i.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
schema_version: 1
from: "registry.access.redhat.com/ubi8/ubi-minimal:8.0"
name: "quay.io/quarkus/ubi-quarkus-native-binary-s2i"
version: "SNAPSHOT"
labels:
- name: "io.openshift.s2i.scripts-url"
value: "image:///usr/libexec/s2i"
- name: "io.openshift.s2i.destination"
value: "/tmp"
- name: "io.openshift.expose-services"
value: "8080:http"
- name: "io.k8s.description"
value: "Quarkus.io S2I image for running native images on Red Hat UBI 8"
- name: "io.k8s.display-name"
value: "Quarkus.io S2I (UBI8)"
- name: "io.openshift.tags"
value: "builder,quarkus,native"
- name: "maintainer"
value: "Quarkus Team <quarkus-dev@googlegroups.com>"
ports:
- value: 8080
packages:
manager: microdnf
modules:
repositories:
- path: modules
install:
- name: common-packages
- name: encoding
- name: add-quarkus-user
- name: quarkus-native-binary-s2i-scripts
envs:
- name: "PATH"
value: "$PATH:$JAVA_HOME/bin"
run:
user: 1001
workdir: "${QUARKUS_HOME}"
cmd:
- "/usr/libexec/s2i/usage"