AArch64 support
[ta/caas-kubernetes.git] / docker-build / kubernetes-builder / Dockerfile
1 # Copyright 2019 Nokia
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 FROM scratch
16 ADD centos-7-docker.tar.xz /
17 CMD ["/bin/bash"]
18 MAINTAINER Krisztian Lengyel <krisztian.lengyel@nokia.com>
19
20 ARG KUBERNETES_VERSION
21 ARG go_version
22 ARG go_install_dir="/usr/local/go"
23 ENV GOPATH="/build"
24 ARG binaries
25 ARG build_packages="gcc gcc-c++ glibc-devel make autoconf git which libtool"
26 ENV GOROOT_BOOTSTRAP="$go_install_dir"
27 ENV GOOS=linux
28 ENV PATH="$GOPATH/bin:$go_install_dir/bin:$PATH"
29
30 RUN set -x \
31 && env \
32 &&  yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm \
33 &&  yum install -y --setopt=skip_missing_names_on_install=False \
34       ${build_packages} \
35       bash \
36       golang \
37       curl \
38       binutils \
39       file \
40       rsync \
41       tar \
42       coreutils \
43       grep \
44       util-linux \
45 &&  mkdir -p ${go_install_dir} \
46 &&  if [ $(uname -m) == 'aarch64' ]; then HOST_ARCH=arm64; else HOST_ARCH=amd64; fi \
47 &&  curl -fsSL -k https://dl.google.com/go/go${go_version}.linux-${HOST_ARCH}.tar.gz | tar zx --strip-components=1 -C ${go_install_dir} \
48 #
49 # Build Kubernetes
50 #
51 &&  mkdir -p ${GOPATH}/src/github.com/kubernetes/kubernetes \
52 &&  curl -fsSL https://github.com/kubernetes/kubernetes/archive/v${KUBERNETES_VERSION}.tar.gz | tar zx --strip-components=1 -C ${GOPATH}/src/github.com/kubernetes/kubernetes \
53 &&  cd ${GOPATH}/src/github.com/kubernetes/kubernetes \
54 &&  make WHAT="cmd/kubelet" \
55 &&  make WHAT="cmd/kubectl" \
56 &&  make WHAT="cmd/kube-apiserver" \
57 &&  make WHAT="cmd/kube-controller-manager" \
58 &&  make WHAT="cmd/kube-proxy" \
59 &&  make WHAT="cmd/kube-scheduler" \
60 &&  mkdir -p ${binaries} \
61 &&  mv ./_output/local/bin/linux/${HOST_ARCH}/{kubelet,kubectl,kube-apiserver,kube-controller-manager,kube-proxy,kube-scheduler} ${binaries}/ \