12 lines
285 B
Bash
Executable file
12 lines
285 B
Bash
Executable file
#!/bin/bash -e
|
|
cat <<EOF
|
|
This is the nodejs S2I image:
|
|
To use it, install S2I: https://github.com/openshift/source-to-image
|
|
|
|
Sample invocation:
|
|
|
|
s2i build <source code path/URL> nodejs:6 <application image>
|
|
|
|
You can then run the resulting image via:
|
|
docker run <application image>
|
|
EOF
|