diff --git a/contrib/build.sh b/contrib/build.sh new file mode 100755 index 0000000..6059e85 --- /dev/null +++ b/contrib/build.sh @@ -0,0 +1,26 @@ +#!/bin/bash +########################################################################## +# A small script to build a static lgregmapper image +# using the golang container image +# +# the binary will be built in to the current directory +########################################################################## +RUNTIME=$(which podman || which docker) +echo "Using container runtime: ${RUNTIME}" + +# find the source directory +SCRIPTPATH="$(cd "$(dirname "$0")" ; pwd -P)" +SOURCEPATH="$(cd "${SCRIPTPATH}/../"; pwd -P)" +echo "Source is in: ${SOURCEPATH}" + +# do the thing +${RUNTIME} run --rm \ + -e CGO_ENABLED=0 \ + -v "${SOURCEPATH}:/go/src/lgregmapper" \ + -v "${PWD}:/go/bin" \ + -w "/go/src/lgregmapper" \ + docker.io/golang:1.12 \ + go get + +########################################################################## +# end of code diff --git a/contrib/buildah.sh b/contrib/buildah.sh new file mode 100755 index 0000000..4b23c6d --- /dev/null +++ b/contrib/buildah.sh @@ -0,0 +1,68 @@ +#!/bin/bash +########################################################################## +IMAGE='lgregmapper' +echo "Building ${IMAGE} container" + +# find the source directory +SCRIPTPATH="$(cd "$(dirname "$0")" ; pwd -P)" +SOURCEPATH="$(cd "${SCRIPTPATH}/../"; pwd -P)" +echo "Source is in: ${SOURCEPATH}" + +########################################################################## + +DEPS=( + 'ca-certificates' +) +B=$(which buildah) + +# initialise container +c=$(buildah from --name ${IMAGE}-working docker.io/debian:buster) + +########################################################################## + +# install dependencies and initialise directories +$B run $c -- bash <