2017-12-09 19:53:12 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set +e
|
|
|
|
|
|
|
|
if [ -z $1 ]; then
|
|
|
|
error "Please set the 'version' variable"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
VERSION="$1"
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# the temp folder to store binary file...
|
|
|
|
mkdir -p binary
|
|
|
|
rm -rf binary/clair || true
|
|
|
|
|
|
|
|
cd `dirname $0`
|
|
|
|
cur=$PWD
|
|
|
|
|
|
|
|
# the temp folder to store distribution source code...
|
|
|
|
TEMP=`mktemp -d /$TMPDIR/clair.XXXXXX`
|
2019-12-04 09:32:23 +01:00
|
|
|
git clone -b $VERSION --single-branch https://github.com/quay/clair.git $TEMP
|
2017-12-09 19:53:12 +01:00
|
|
|
|
2019-10-20 15:10:55 +02:00
|
|
|
echo 'build the clair binary bases on the golang:1.12.12'
|
2017-12-09 19:53:12 +01:00
|
|
|
cp Dockerfile.binary $TEMP
|
|
|
|
docker build -f $TEMP/Dockerfile.binary -t clair-golang $TEMP
|
|
|
|
|
|
|
|
echo 'copy the clair binary to local...'
|
|
|
|
ID=$(docker create clair-golang)
|
2019-12-04 09:32:23 +01:00
|
|
|
docker cp $ID:/go/src/github.com/quay/clair/clair binary
|
2017-12-09 19:53:12 +01:00
|
|
|
|
|
|
|
docker rm -f $ID
|
|
|
|
docker rmi -f clair-golang
|
|
|
|
|
|
|
|
echo "Build clair binary success, then to build photon image..."
|
|
|
|
cd $cur
|
|
|
|
rm -rf $TEMP
|