2016-03-08 13:42:20 -06:00
|
|
|
#!/bin/bash
|
2016-09-06 15:15:10 -05:00
|
|
|
## This script is to automate the preparation for docker images for SONiC.
|
2016-03-08 13:42:20 -06:00
|
|
|
## If registry server and port provided, the images will be pushed there.
|
|
|
|
|
2016-07-26 14:01:58 -05:00
|
|
|
set -e
|
|
|
|
|
|
|
|
. ./functions.sh
|
|
|
|
|
|
|
|
usage() {
|
|
|
|
cat >&2 <<EOF
|
|
|
|
Usage:
|
2016-11-23 14:59:47 -06:00
|
|
|
sudo ./build_docker.sh [-i DOCKER_IMAGE_NAME] [-t DOCKER_IMAGE_TAG] DOCKER_BUILD_DIR [REGISTRY_SERVER REGISTRY_PORT REGISTRY_USERNAME REGISTRY_PASSWD]
|
2016-07-26 14:01:58 -05:00
|
|
|
|
|
|
|
Description:
|
|
|
|
-i DOCKER_IMAGE_NAME
|
2016-11-23 14:59:47 -06:00
|
|
|
Specify the docker image's name, by default it is DOCKER_BUILD_DIR
|
|
|
|
-t DOCKER_IMAGE_TAG
|
|
|
|
Specify the docker image's tag, by default it is latest
|
2016-07-26 14:01:58 -05:00
|
|
|
DOCKER_BUILD_DIR
|
|
|
|
The directory containing Dockerfile
|
|
|
|
REGISTRY_SERVER
|
|
|
|
The server name of the docker registry
|
|
|
|
REGISTRY_PORT
|
|
|
|
The port of the docker registry
|
|
|
|
|
|
|
|
Example:
|
|
|
|
./build_docker.sh -i docker-orchagent-mlnx docker-orchagent
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
docker_image_name=''
|
2016-11-23 14:59:47 -06:00
|
|
|
docker_image_tag=latest
|
2016-11-28 15:49:06 -06:00
|
|
|
## The option-string tells getopts which options to expect and which of them must have an argument
|
|
|
|
## When you want getopts to expect an argument for an option, just place a : (colon) after the proper option flag
|
|
|
|
## If the very first character of the option-string is a :, getopts switches to "silent error reporting mode".
|
|
|
|
while getopts "i:t:" opt; do
|
2016-07-26 14:01:58 -05:00
|
|
|
case $opt in
|
|
|
|
i)
|
|
|
|
docker_image_name=$OPTARG
|
|
|
|
;;
|
2016-11-23 14:59:47 -06:00
|
|
|
t)
|
|
|
|
docker_image_tag=$OPTARG
|
|
|
|
;;
|
2016-07-26 14:01:58 -05:00
|
|
|
\?)
|
|
|
|
echo "Invalid option: -$OPTARG" >&2
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift "$((OPTIND - 1))"
|
2016-03-08 13:42:20 -06:00
|
|
|
|
|
|
|
## Dockerfile directory
|
2016-08-04 12:39:33 -05:00
|
|
|
DOCKER_BUILD_DIR=dockers/$1
|
2016-12-01 04:18:59 -06:00
|
|
|
shift 1
|
2016-03-08 13:42:20 -06:00
|
|
|
|
2016-08-04 12:39:33 -05:00
|
|
|
[ -f "$DOCKER_BUILD_DIR"/Dockerfile ] || {
|
2016-03-08 13:42:20 -06:00
|
|
|
echo "Invalid DOCKER_BUILD_DIR directory" >&2
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2016-07-26 14:01:58 -05:00
|
|
|
[ -n "$docker_image_name" ] || {
|
2016-08-04 12:39:33 -05:00
|
|
|
docker_image_name=$(basename $DOCKER_BUILD_DIR)
|
2016-03-08 13:42:20 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
## Copy dependencies
|
|
|
|
## Note: Dockerfile ADD doesn't support reference files outside the folder, so copy it locally
|
2016-05-27 15:30:13 -05:00
|
|
|
if ls deps/* 1>/dev/null 2>&1; then
|
2016-07-26 14:01:58 -05:00
|
|
|
trap_push "rm -rf $DOCKER_BUILD_DIR/deps"
|
2016-05-27 15:30:13 -05:00
|
|
|
mkdir -p $DOCKER_BUILD_DIR/deps
|
|
|
|
cp -r deps/* $DOCKER_BUILD_DIR/deps
|
|
|
|
fi
|
2016-03-08 13:42:20 -06:00
|
|
|
|
|
|
|
## Copy the suggested Debian sources
|
|
|
|
## ref: https://wiki.debian.org/SourcesList
|
2016-07-26 14:01:58 -05:00
|
|
|
trap_push "rm -rf $DOCKER_BUILD_DIR/deps"
|
2016-05-27 15:30:13 -05:00
|
|
|
cp -r files $DOCKER_BUILD_DIR/files
|
2016-07-26 14:01:58 -05:00
|
|
|
docker_try_rmi $docker_image_name
|
|
|
|
|
|
|
|
## Build the docker image
|
2016-05-27 15:30:13 -05:00
|
|
|
docker build --no-cache -t $docker_image_name $DOCKER_BUILD_DIR
|
2016-07-26 14:01:58 -05:00
|
|
|
## Get the ID of the built image
|
|
|
|
## Note: inspect output has quotation characters, so sed to remove it as an argument
|
|
|
|
image_id=$(docker inspect --format="{{json .Id}}" $docker_image_name | sed -e 's/^"//' -e 's/"$//')
|
2016-05-27 15:30:13 -05:00
|
|
|
|
|
|
|
## Flatten the image by importing an exported container on this image
|
|
|
|
## Note: it will squash the image with only one layer and lost all metadata such as ENTRYPOINT,
|
|
|
|
## so apply only to the base image
|
|
|
|
## TODO: wait docker-squash supporting Docker 1.10+
|
|
|
|
## ref: https://github.com/jwilder/docker-squash/issues/45
|
|
|
|
if [ "$docker_image_name" = "docker-base" ]; then
|
2016-08-04 12:39:33 -05:00
|
|
|
## Run old image in a container
|
2016-05-27 15:30:13 -05:00
|
|
|
tmp_container=$(docker run -d ${docker_image_name} /bin/bash)
|
2016-08-04 12:39:33 -05:00
|
|
|
## Export the container's filesystem, then import as a new image
|
2016-05-27 15:30:13 -05:00
|
|
|
docker export $tmp_container | docker import - ${docker_image_name}
|
2016-08-04 12:39:33 -05:00
|
|
|
## Remove the container
|
|
|
|
docker rm -f $tmp_container || true
|
|
|
|
## Remove the old image
|
|
|
|
docker rmi -f $image_id || true
|
2016-05-27 15:30:13 -05:00
|
|
|
fi
|
2016-03-08 13:42:20 -06:00
|
|
|
|
2016-12-01 04:18:59 -06:00
|
|
|
## Save the docker image in a gz file
|
|
|
|
mkdir -p target
|
2022-12-17 16:38:31 -06:00
|
|
|
command -v pigz > /dev/null && GZ_COMPRESS_PROGRAM=pigz || GZ_COMPRESS_PROGRAM=gzip
|
|
|
|
docker save $docker_image_name | $GZ_COMPRESS_PROGRAM -c > target/$docker_image_name.gz
|
2016-05-27 15:30:13 -05:00
|
|
|
|
2016-12-01 04:18:59 -06:00
|
|
|
if [ -n "$1" ]; then
|
|
|
|
./push_docker.sh target/$docker_image_name.gz $@ $docker_image_tag
|
2016-03-08 13:42:20 -06:00
|
|
|
fi
|