858fe24cb8645d06f18b82e89a0d6c66de6226f3
[infra/tools.git] / infra / jenkins / slave-setup / uds-build-server / install-packages.sh
1 #!/bin/bash
2 # ============LICENSE_START=======================================================
3 #  Copyright (C) 2020 The Nordix Foundation. All rights reserved.
4 # ================================================================================
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #      http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17 # SPDX-License-Identifier: Apache-2.0
18 # ============LICENSE_END=========================================================
19
20 set -ex
21
22 sudo apt-get update
23 sudo apt-get install -y unzip
24
25 # INSTALL JAVA
26 sudo apt-get install -y openjdk-11-jdk
27 java -version
28
29 # INSTALL DOCKER
30 sudo DEBIAN_FRONTEND=noninteractive apt-get install -y \
31     apt-transport-https \
32     ca-certificates \
33     curl \
34     gnupg-agent \
35     software-properties-common
36 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
37 sudo add-apt-repository \
38    "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
39    $(lsb_release -cs) \
40    stable"
41 sudo apt-get update
42 sudo apt-get install -y docker-ce=5:19.03.12~3-0~ubuntu-bionic docker-ce-cli=5:19.03.12~3-0~ubuntu-bionic containerd.io
43 sudo usermod -aG docker $USER
44 newgrp docker
45 docker --version