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.
27 lines
800 B
27 lines
800 B
#!/bin/bash -e
|
|
#
|
|
# S2I assemble script for the 'golang-centos7' image.
|
|
# The 'assemble' script builds your application source so that it is ready to run.
|
|
#
|
|
# For more information refer to the documentation:
|
|
# https://github.com/openshift/source-to-image/blob/master/docs/builder_image.md
|
|
#
|
|
|
|
# If the 'golang-centos7' assemble script is executed with the '-h' flag, print the usage.
|
|
if [[ "$1" == "-h" ]]; then
|
|
exec /usr/libexec/s2i/usage
|
|
fi
|
|
|
|
# Restore artifacts from the previous build (if they exist).
|
|
#
|
|
if [ "$(ls /tmp/artifacts/ 2>/dev/null)" ]; then
|
|
echo "---> Restoring build artifacts..."
|
|
mv /tmp/artifacts/. ./
|
|
fi
|
|
|
|
echo "---> Installing application source..."
|
|
cp -Rf /tmp/src/. ./
|
|
|
|
echo "---> Building application from source..."
|
|
export PATH="$PATH:/usr/local/go/bin"
|
|
go build -o ../main
|
|
|