forked from sonic-net/sonic-buildimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reproducible build support docker image (sonic-net#8039)
when build docker image, we need a base image. now base image is specified by tag. we can use sha256 to specify docker image.
- Loading branch information
1 parent
70c619c
commit 4b3b4c0
Showing
3 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# This script is for reproducible build. | ||
# Reproducible build for docker enabled: Before build docker image, this script will change image:tag to image:sha256 in DOCKERFILE. | ||
# And record image sha256 to a target file. | ||
#!/bin/bash | ||
|
||
IMAGENAME=$1 | ||
DOCKERFILE=$2 | ||
ARCH=$3 | ||
DOCKERFILE_TARGE=$4 | ||
DISTRO=$5 | ||
|
||
version_file=files/build/versions/default/versions-docker | ||
new_version_file=target/versions/default/versions-docker | ||
mkdir -p target/versions/default | ||
|
||
. src/sonic-build-hooks/buildinfo/config/buildinfo.config | ||
|
||
image_tag=`grep "^FROM " $DOCKERFILE | awk '{print$2}'` | ||
image=`echo $image_tag | cut -f1 -d:` | ||
tag=`echo $image_tag | cut -f2 -d:` | ||
|
||
# if docker image not in white list, exit | ||
if [[ "$IMAGENAME" != sonic-slave-* ]] && [[ "$IMAGENAME" != docker-base* ]];then | ||
exit 0 | ||
fi | ||
|
||
if [[ ",$SONIC_VERSION_CONTROL_COMPONENTS," == *,all,* ]] || [[ ",$SONIC_VERSION_CONTROL_COMPONENTS," == *,docker,* ]]; then | ||
if [ -f $version_file ];then | ||
hash_value=`grep "${ARCH}:${image_tag}" $version_file | awk -F== '{print$2}'` | ||
fi | ||
if [ -z $hash_value ];then | ||
hash_value=unknown | ||
fi | ||
oldimage=${image_tag//\//\\/} | ||
newimage="${oldimage}@$hash_value" | ||
sed -i "s/$oldimage/$newimage/" $DOCKERFILE | ||
else | ||
hash_value=`docker pull $image_tag | grep Digest | awk '{print$2}'` | ||
fi | ||
if [[ "$hash_value" != "unknown" ]];then | ||
echo -e "${ARCH}:${image_tag}==$hash_value" >> $new_version_file | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters