Matteo Scandolo | 9d34a0f | 2021-03-29 15:26:56 -0700 | [diff] [blame] | 1 | # Copyright 2021-present Open Networking Foundation |
| 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.8 |
| 16 | |
| 17 | ENV KUBE_LATEST_VERSION="v1.20.4" |
| 18 | |
| 19 | RUN adduser -h voltha -s /sbin/nologin -u 1000 -D voltha \ |
| 20 | && apk add --no-cache curl=7.61.1-r3 bash=4.4.19-r1 openssl=1.0.2u-r0 \ |
| 21 | && curl -L https://storage.googleapis.com/kubernetes-release/release/${KUBE_LATEST_VERSION}/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl \ |
| 22 | && chmod +x /usr/local/bin/kubectl |
| 23 | |
| 24 | RUN bash --version |
| 25 | |
| 26 | # Label image |
| 27 | ARG org_label_schema_version=unknown |
| 28 | ARG org_label_schema_vcs_url=unknown |
| 29 | ARG org_label_schema_vcs_ref=unknown |
| 30 | ARG org_label_schema_build_date=unknown |
| 31 | ARG org_opencord_vcs_commit_date=unknown |
| 32 | ARG org_opencord_vcs_dirty=unknown |
| 33 | ARG GOLANG_VERSION=unknown |
| 34 | |
| 35 | LABEL org.label-schema.schema-version=1.0 \ |
| 36 | org.label-schema.name=voltha-protoc \ |
| 37 | org.label-schema.version=$org_label_schema_version \ |
| 38 | org.label-schema.vcs-url=$org_label_schema_vcs_url \ |
| 39 | org.label-schema.vcs-ref=$org_label_schema_vcs_ref \ |
| 40 | org.label-schema.build-date=$org_label_schema_build_date \ |
| 41 | org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date \ |
| 42 | org.opencord.vcs-dirty=$org_opencord_vcs_dirty \ |
| 43 | org.opencord.golang-version=$GOLANG_VERSION |