Abukar Mohamed | 97e8d9a | 2019-05-02 06:11:43 +0000 | [diff] [blame^] | 1 | # Copyright (c) 2019 AT&T Intellectual Property. |
| 2 | # Copyright (c) 2019 Nokia. |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | #---------------------------------------------------------- |
| 17 | # |
| 18 | #---------------------------------------------------------- |
| 19 | FROM ubuntu:16.04 as xapp-base |
| 20 | |
| 21 | RUN apt-get update -y && \ |
| 22 | apt-get install -y wget |
| 23 | |
| 24 | RUN sed -i -e "s,http://archive.ubuntu.com/ubuntu,$(wget -qO - mirrors.ubuntu.com/mirrors.txt | head -1)," /etc/apt/sources.list |
| 25 | RUN sed -i -e "s,http://security.ubuntu.com/ubuntu,$(wget -qO - mirrors.ubuntu.com/mirrors.txt | head -1)," /etc/apt/sources.list |
| 26 | |
| 27 | # |
| 28 | # packages |
| 29 | # |
| 30 | RUN apt-get update -y && \ |
| 31 | apt-get upgrade -y && \ |
| 32 | apt-get install -y \ |
| 33 | build-essential \ |
| 34 | apt-utils \ |
| 35 | cmake \ |
| 36 | make \ |
| 37 | autoconf \ |
| 38 | autoconf-archive \ |
| 39 | gawk \ |
| 40 | libtool \ |
| 41 | automake \ |
| 42 | pkg-config \ |
| 43 | sudo \ |
| 44 | wget \ |
| 45 | nano \ |
| 46 | git \ |
| 47 | jq |
| 48 | |
| 49 | |
| 50 | # |
| 51 | # go |
| 52 | # |
| 53 | RUN wget https://dl.google.com/go/go1.12.linux-amd64.tar.gz && \ |
| 54 | tar -C /usr/local -xvf ./go1.12.linux-amd64.tar.gz |
| 55 | |
| 56 | ENV PATH="/usr/local/go/bin:${PATH}" |
| 57 | |
| 58 | # |
| 59 | # rancodev libs |
| 60 | # |
| 61 | RUN mkdir -p /opt/build \ |
| 62 | && cd /opt/build && git clone https://gerrit.oran-osc.org/r/com/log \ |
| 63 | && cd log/ ; ./autogen.sh ; ./configure ; make ; make install \ |
| 64 | && ldconfig |
| 65 | |
| 66 | COPY build/build_entrypoint.sh / |
| 67 | COPY build/user_entrypoint.sh / |
| 68 | |
| 69 | RUN chmod +x /build_entrypoint.sh |
| 70 | RUN chmod +x /user_entrypoint.sh |
| 71 | |
| 72 | RUN mkdir -p /ws |
| 73 | WORKDIR "/ws" |
| 74 | ENTRYPOINT ["/user_entrypoint.sh"] |
| 75 | CMD ["/bin/bash"] |
| 76 | |
| 77 | #---------------------------------------------------------- |
| 78 | # |
| 79 | #---------------------------------------------------------- |
| 80 | FROM xapp-base as appmgr-build |
| 81 | |
| 82 | ARG PACKAGEURL |
| 83 | ARG PACKAGEREPO |
| 84 | ARG SSH_PRIVATE_KEY |
| 85 | ARG NETRC_CONFIG |
| 86 | ARG HELMVERSION |
| 87 | |
| 88 | |
| 89 | # |
| 90 | # helm |
| 91 | # |
| 92 | RUN wget https://storage.googleapis.com/kubernetes-helm/helm-${HELMVERSION}-linux-amd64.tar.gz \ |
| 93 | && tar -zxvf helm-${HELMVERSION}-linux-amd64.tar.gz \ |
| 94 | && cp linux-amd64/helm /usr/bin/helm \ |
| 95 | && rm -rf helm-${HELMVERSION}-linux-amd64.tar.gz \ |
| 96 | && rm -rf linux-amd64 |
| 97 | |
| 98 | # Install kubectl from Docker Hub. |
| 99 | COPY --from=lachlanevenson/k8s-kubectl:v1.10.3 /usr/local/bin/kubectl /usr/local/bin/kubectl |
| 100 | |
| 101 | RUN mkdir -p /go/src/${PACKAGEURL} |
| 102 | WORKDIR "/go/src/${PACKAGEURL}" |
| 103 | ENV GOPATH="/go" |
| 104 | |
| 105 | # Module prepare (if go.mod/go.sum updated) |
| 106 | COPY go.mod /go/src/${PACKAGEURL} |
| 107 | COPY go.sum /go/src/${PACKAGEURL} |
| 108 | RUN GO111MODULE=on /build_entrypoint.sh go mod download |
| 109 | |
| 110 | # build |
| 111 | COPY . /go/src/${PACKAGEURL} |
| 112 | RUN /build_entrypoint.sh make -C /go/src/${PACKAGEURL} build |
| 113 | |
| 114 | ENTRYPOINT ["/build_entrypoint.sh"] |
| 115 | CMD ["/bin/bash"] |
| 116 | |
| 117 | |
| 118 | #---------------------------------------------------------- |
| 119 | # |
| 120 | #---------------------------------------------------------- |
| 121 | FROM appmgr-build as appmgr-test_unit |
| 122 | ARG PACKAGEURL |
| 123 | WORKDIR "/go/src/${PACKAGEURL}" |
| 124 | CMD ["make","go-test"] |
| 125 | |
| 126 | |
| 127 | #---------------------------------------------------------- |
| 128 | # |
| 129 | #---------------------------------------------------------- |
| 130 | FROM appmgr-build as appmgr-test_fmt |
| 131 | ARG PACKAGEURL |
| 132 | WORKDIR "/go/src/${PACKAGEURL}" |
| 133 | CMD ["make","go-test-fmt"] |
| 134 | |
| 135 | #---------------------------------------------------------- |
| 136 | # |
| 137 | #---------------------------------------------------------- |
| 138 | FROM appmgr-build as appmgr-test_sanity |
| 139 | ARG PACKAGEURL |
| 140 | WORKDIR "/go/src/${PACKAGEURL}" |
| 141 | CMD ["jq","-s",".", "api/appmgr_rest_api.json"] |
| 142 | |
| 143 | |
| 144 | #---------------------------------------------------------- |
| 145 | # |
| 146 | #---------------------------------------------------------- |
| 147 | FROM ubuntu:16.04 as appmgr |
| 148 | ARG PACKAGEURL |
| 149 | |
| 150 | RUN apt-get update -y \ |
| 151 | && apt-get install -y sudo openssl ca-certificates ca-cacert \ |
| 152 | && apt-get clean |
| 153 | |
| 154 | |
| 155 | # |
| 156 | # libraries and helm |
| 157 | # |
| 158 | COPY --from=appmgr-build /usr/local/include/ /usr/local/include/ |
| 159 | COPY --from=appmgr-build /usr/local/lib/ /usr/local/lib/ |
| 160 | COPY --from=appmgr-build /usr/bin/helm /usr/bin/helm |
| 161 | COPY --from=appmgr-build /usr/local/bin/kubectl /usr/bin/kubectl |
| 162 | |
| 163 | RUN ldconfig |
| 164 | |
| 165 | # |
| 166 | # xApp |
| 167 | # |
| 168 | RUN mkdir -p /opt/xAppManager \ |
| 169 | && chmod -R 755 /opt/xAppManager |
| 170 | |
| 171 | COPY --from=appmgr-build /go/src/${PACKAGEURL}/build/cache/cmd/appmgr /opt/xAppManager/appmgr |
| 172 | #COPY --from=appmgr-build /go/src/${PACKAGEURL}/config/appmgr.yaml /opt/etc/xAppManager/config-file.yaml |
| 173 | |
| 174 | |
| 175 | WORKDIR /opt/xAppManager |
| 176 | |
| 177 | COPY appmgr-entrypoint.sh /opt/xAppManager/ |
| 178 | ENTRYPOINT ["/opt/xAppManager/appmgr-entrypoint.sh"] |