CaaS storage seed code
[ta/caas-storage.git] / docker-build / storage_local_static_provisioner / 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 alpine:3.9
16 MAINTAINER Balazs Szekeres <balazs.szekeres@nokia.com>
17
18 ARG STORAGE_LOCAL_STATIC_PROVISIONER_VERSION
19 ARG go_install_dir="/usr/local/go"
20 ARG go_version
21
22 ENV PATH="$go_install_dir/bin:$PATH"
23 ENV GOPATH /build
24 ENV USER=root
25
26 RUN apk update \
27 &&  apk upgrade \
28 &&  apk add --no-cache --virtual .build-deps build-base go godep curl tar \
29 &&  apk add util-linux e2fsprogs bash xfsprogs \
30 \
31 &&  mkdir -p $go_install_dir \
32 &&  curl -fsSL -k https://dl.google.com/go/go${go_version}.src.tar.gz | tar zx --strip-components=1 -C ${go_install_dir} \
33 &&  cd ${go_install_dir}/src/ \
34 &&  ./make.bash \
35 \
36 &&  mkdir -p ${GOPATH}/src/sigs.k8s.io/sig-storage-local-static-provisioner \
37 &&  curl -fsSL -k https://github.com/kubernetes-sigs/sig-storage-local-static-provisioner/archive/v${STORAGE_LOCAL_STATIC_PROVISIONER_VERSION}.tar.gz | tar zx --strip-components=1 -C ${GOPATH}/src/sigs.k8s.io/sig-storage-local-static-provisioner \
38 &&  cd ${GOPATH}/src/sigs.k8s.io/sig-storage-local-static-provisioner \
39 &&  GOOS=${OS} GOARCH=${ARCH} go build -a -ldflags '-extldflags "-static"' -o _output/${OS}/${ARCH}/local-volume-provisioner ./cmd/local-volume-provisioner \
40 &&  mv deployment/docker/scripts /scripts \
41 &&  mv deployment/docker/test.sh /test.sh \
42 &&  mv _output/${OS}/${ARCH}/local-volume-provisioner /bin/local-volume-provisioner \
43 &&  apk del .build-deps \
44 &&  rm -rf /build \
45 &&  rm -rf ${GOPATH}
46
47 ENTRYPOINT ["/bin/local-volume-provisioner"]