Pin pip to 20.3.3 and disable tmpfs in DIB
[ta/build-tools.git] / build_step_golden_image.sh
1 #!/bin/bash
2 # Copyright 2019 Nokia
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 set -x
17 set -e
18
19 scriptdir="$(dirname $(readlink -f ${BASH_SOURCE[0]}))"
20 source $scriptdir/lib.sh
21
22 output_image_path=${1:-$WORKTMP/goldenimage/$GOLDEN_IMAGE_NAME}
23
24 docker_dib_image=dib
25 _load_docker_image $docker_dib_image
26
27 docker run \
28   --network=host \
29   --rm \
30   --privileged \
31   -v /dev:/dev \
32   -v $WORK:/work \
33   -e WORK=/work \
34   -v $MANIFEST_PATH:/manifest \
35   -e MANIFEST_PATH=/manifest \
36   -v $scriptdir:/tools \
37   $docker_dib_image \
38   /tools/create_golden_image.sh
39
40 mkdir -p $(dirname $output_image_path)
41 mv -f ${TMP_GOLDEN_IMAGE}.qcow2 $output_image_path
42
43 input_dir=$WORKTMP/rpmdata
44 mkdir -p $input_dir
45 cp -r \
46   $BUILD_CONFIG_INI $RPMLISTS/rpm_info_installed $RPMLISTS/yum_info_installed $RPMLISTS/crypto_rpms.json $RPMLISTS/boms \
47   $input_dir
48
49 $LIBDIR/create_rpmdata_in_docker.sh \
50   $input_dir \
51   $RPMLISTS \
52   -v
53