blob: 84ba25df05706c04ae304bd365dc4a551b09bdae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/bash
#
# For more information refer to the documentation:
# https://github.com/openshift/source-to-image/blob/master/docs/builder_image.md
#
source ${0}.pre
echo "---> Create hello world page ..."
mkdir html
cat <<EOF > html/index.html
<html>
<head><title>hello world</title></head>
<body><h1>hello world</h1></body>
</html>
EOF
source ${0}.post
|