mirror of
https://github.com/goharbor/harbor.git
synced 2024-10-31 23:59:32 +01:00
c6814f2bcc
1, deprecate travis, and use the gitaction for instread. 2, upgrade golang version to v1.15.6 Signed-off-by: Wang Yan <wangyan@vmware.com>
39 lines
815 B
Bash
Executable File
39 lines
815 B
Bash
Executable File
#!/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`
|
|
git clone -b $VERSION --single-branch https://github.com/quay/clair.git $TEMP
|
|
|
|
echo 'build the clair binary bases on the golang:1.15.6'
|
|
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)
|
|
docker cp $ID:/go/src/github.com/quay/clair/clair binary
|
|
|
|
docker rm -f $ID
|
|
docker rmi -f clair-golang
|
|
|
|
echo "Build clair binary success, then to build photon image..."
|
|
cd $cur
|
|
rm -rf $TEMP
|