An OpenShift Source-to-Image builder dedicated to Go
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 lines
299 B

#!/bin/bash -e
cat <<EOF
This is the golang-centos7 S2I image:
To use it, install S2I: https://github.com/openshift/source-to-image
Sample invocation:
s2i build <source code path/URL> golang-centos7 <application image>
You can then run the resulting image via:
docker run <application image>
EOF