Update logging interface
[ric-plt/appmgr.git] / Dockerfile
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 appmgr-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 COPY build/user_entrypoint.sh /
59
60 RUN chmod +x /user_entrypoint.sh
61
62 RUN mkdir -p /ws
63 WORKDIR "/ws"
64 ENTRYPOINT ["/user_entrypoint.sh"]
65 CMD ["/bin/bash"]
66
67 #----------------------------------------------------------
68 #
69 #----------------------------------------------------------
70 FROM appmgr-xapp-base as appmgr-build
71
72 ARG PACKAGEURL
73 ARG HELMVERSION
74
75
76 #
77 # helm
78 #
79 RUN wget https://storage.googleapis.com/kubernetes-helm/helm-${HELMVERSION}-linux-amd64.tar.gz \
80     && tar -zxvf helm-${HELMVERSION}-linux-amd64.tar.gz \
81     && cp linux-amd64/helm /usr/bin/helm \
82     && rm -rf helm-${HELMVERSION}-linux-amd64.tar.gz \
83     && rm -rf linux-amd64
84
85 # Install kubectl from Docker Hub.
86 COPY --from=lachlanevenson/k8s-kubectl:v1.10.3 /usr/local/bin/kubectl /usr/local/bin/kubectl
87
88 RUN mkdir -p /go/src/${PACKAGEURL}
89 WORKDIR "/go/src/${PACKAGEURL}"
90 ENV GOPATH="/go"
91
92 # Module prepare (if go.mod/go.sum updated)
93 COPY go.mod /go/src/${PACKAGEURL}
94 COPY go.sum /go/src/${PACKAGEURL}
95 RUN GO111MODULE=on go mod download
96
97 # build
98 COPY . /go/src/${PACKAGEURL}
99 RUN make -C /go/src/${PACKAGEURL} build
100
101 CMD ["/bin/bash"]
102
103
104 #----------------------------------------------------------
105 #
106 #----------------------------------------------------------
107 FROM appmgr-build as appmgr-test_unit
108 ARG PACKAGEURL
109 WORKDIR "/go/src/${PACKAGEURL}"
110 CMD ["make","go-test"]
111
112
113 #----------------------------------------------------------
114 #
115 #----------------------------------------------------------
116 FROM appmgr-build as appmgr-test_fmt
117 ARG PACKAGEURL
118 WORKDIR "/go/src/${PACKAGEURL}"
119 CMD ["make","go-test-fmt"]
120
121 #----------------------------------------------------------
122 #
123 #----------------------------------------------------------
124 FROM appmgr-build as appmgr-test_sanity
125 ARG PACKAGEURL
126 WORKDIR "/go/src/${PACKAGEURL}"
127 CMD ["jq","-s",".", "api/appmgr_rest_api.json"]
128
129
130 #----------------------------------------------------------
131 #
132 #----------------------------------------------------------
133 FROM ubuntu:16.04 as appmgr
134 ARG PACKAGEURL
135
136 RUN apt-get update -y \
137     && apt-get install -y sudo openssl ca-certificates ca-cacert \
138     && apt-get clean
139
140
141 #
142 # libraries and helm
143 #
144 COPY --from=appmgr-build /usr/local/include/ /usr/local/include/
145 COPY --from=appmgr-build /usr/local/lib/ /usr/local/lib/
146 COPY --from=appmgr-build /usr/bin/helm /usr/bin/helm
147 COPY --from=appmgr-build /usr/local/bin/kubectl /usr/bin/kubectl
148
149 RUN ldconfig
150
151 #
152 # xApp
153 #
154 RUN mkdir -p /opt/xAppManager \
155     && chmod -R 755 /opt/xAppManager
156
157 COPY --from=appmgr-build /go/src/${PACKAGEURL}/cache/go/cmd/appmgr /opt/xAppManager/appmgr
158 #COPY --from=appmgr-build /go/src/${PACKAGEURL}/config/appmgr.yaml /opt/etc/xAppManager/config-file.yaml
159
160
161 WORKDIR /opt/xAppManager
162
163 COPY appmgr-entrypoint.sh /opt/xAppManager/
164 ENTRYPOINT ["/opt/xAppManager/appmgr-entrypoint.sh"]