mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-04 17:49:48 +01:00
08a4d8efd2
We should use a golang that isn't having security issues. This includes: * go1.14.6 (released 2020/07/16) includes fixes to the go command, the compiler, the linker, vet, and the database/sql, encoding/json, net/http, reflect, and testing packages. See the Go 1.14.6 milestone on our issue tracker for details. * go1.14.7 (released 2020/08/06) includes security fixes to the encoding/binary package. See the Go 1.14.7 milestone on our issue tracker for details (CVE-2020-16845) Signed-off-by: Dirk Mueller <dirk@dmllr.de> Signed-off-by: Dirk Mueller <dmueller@suse.com>
36 lines
878 B
Bash
Executable File
36 lines
878 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
|
|
|
|
cd $(dirname $0)
|
|
cur=$PWD
|
|
|
|
# The temporary directory to clone Trivy adapter source code
|
|
TEMP=$(mktemp -d ${TMPDIR-/tmp}/trivy-adapter.XXXXXX)
|
|
git clone https://github.com/aquasecurity/harbor-scanner-trivy.git $TEMP
|
|
cd $TEMP; git checkout $VERSION; cd -
|
|
|
|
echo "Building Trivy adapter binary based on golang:1.14.7..."
|
|
cp Dockerfile.binary $TEMP
|
|
docker build -f $TEMP/Dockerfile.binary -t trivy-adapter-golang $TEMP
|
|
|
|
echo "Copying Trivy adapter binary from the container to the local directory..."
|
|
ID=$(docker create trivy-adapter-golang)
|
|
docker cp $ID:/go/src/github.com/aquasecurity/harbor-scanner-trivy/scanner-trivy binary
|
|
|
|
docker rm -f $ID
|
|
docker rmi -f trivy-adapter-golang
|
|
|
|
echo "Building Trivy adapter binary finished successfully"
|
|
cd $cur
|
|
rm -rf $TEMP
|