blob: 9bc6810b8d33b80eee6244fff8f1107161c5cf8a [file] [log] [blame]
BjornMagnussonXAc5655db2023-03-17 14:55:16 +01001#!/bin/bash
2
3# ============LICENSE_START===============================================
4# Copyright (C) 2023 Nordix Foundation. All rights reserved.
5# ========================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# ============LICENSE_END=================================================
18#
19
20# Build image from Dockerfile with/without custom image tag
BjornMagnussonXA6ab531b2023-05-15 11:23:35 +020021# Optionally push to external image repo
BjornMagnussonXAc5655db2023-03-17 14:55:16 +010022
23print_usage() {
24 echo "Usage: build.sh no-push|<docker-hub-repo-name> [<image-tag>]"
25 exit 1
26}
27
28if [ $# -ne 1 ] && [ $# -ne 2 ]; then
29 print_usage
30fi
31
32IMAGE_NAME="pm-rapp"
33IMAGE_TAG="latest"
34REPO=""
35if [ $1 == "no-push" ]; then
36 echo "Only local image build"
37else
38 REPO=$1
39 echo "Attempt to push built image to: "$REPO
40fi
41
BjornMagnussonXA6ab531b2023-05-15 11:23:35 +020042shift
43while [ $# -ne 0 ]; do
44 if [ $1 == "--tag" ]; then
45 shift
46 if [ -z "$1" ]; then
47 print_usage
48 fi
49 IMAGE_TAG=$1
50 echo "Setting image tag to: "$IMAGE_TAG
51 shift
52 else
53 echo "Unknown parameter: $1"
54 print_usage
55 fi
56done
BjornMagnussonXAc5655db2023-03-17 14:55:16 +010057
58IMAGE=$IMAGE_NAME:$IMAGE_TAG
BjornMagnussonXA6ab531b2023-05-15 11:23:35 +020059
60export DOCKER_DEFAULT_PLATFORM=linux/amd64
61CURRENT_PLATFORM=$(docker system info --format '{{.OSType}}/{{.Architecture}}')
62if [ $CURRENT_PLATFORM != $DOCKER_DEFAULT_PLATFORM ]; then
63 echo "Image may not work on the current platform: $CURRENT_PLATFORM, only platform $DOCKER_DEFAULT_PLATFORM supported"
64fi
65
BjornMagnussonXAc5655db2023-03-17 14:55:16 +010066echo "Building image $IMAGE"
67docker build -t $IMAGE_NAME:$IMAGE_TAG .
68if [ $? -ne 0 ]; then
69 echo "BUILD FAILED"
70 exit 1
71fi
72echo "BUILD OK"
73
74if [ "$REPO" != "" ]; then
75 echo "Tagging image"
76 NEW_IMAGE=$REPO/$IMAGE_NAME:$IMAGE_TAG
77 docker tag $IMAGE $NEW_IMAGE
78 if [ $? -ne 0 ]; then
79 echo "RE-TAGGING FAILED"
80 exit 1
81 fi
82 echo "RE-TAG OK"
83
84 echo "Pushing image $NEW_IMAGE"
85 docker push $NEW_IMAGE
86 if [ $? -ne 0 ]; then
87 echo "PUSHED FAILED"
88 echo " Perhaps not logged into docker-hub repo $REPO?"
89 exit 1
90 fi
91 IMAGE=$NEW_IMAGE
92 echo "PUSH OK"
93fi
94
95echo "IMAGE OK: $IMAGE"
96echo "DONE"