Fix os layer build failures
[validation.git] / docker / os / Dockerfile
1 ##############################################################################
2 # Copyright (c) 2019 AT&T, ENEA AB, Nokia and others                         #
3 #                                                                            #
4 # Licensed under the Apache License, Version 2.0 (the "License");            #
5 # you maynot use this file except in compliance with the License.            #
6 #                                                                            #
7 # You may obtain a copy of the License at                                    #
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, WITHOUT  #
12 # 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 # ref: https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#use-multi-stage-builds
18 FROM ubuntu:18.04 as build
19
20 # Install dependencies
21 COPY pip-requirements.txt /wheels/requirements/pip-requirements.txt
22 RUN apt-get update && apt-get -y install \
23     python3-pip \
24     gcc \
25     git \
26     libc-dev \
27     libffi6 \
28     libffi-dev \
29     make \
30     libssl-dev \
31     golint \
32     sqlite3 \
33     debian-goodies \
34     build-essential \
35     pkg-config \
36     autoconf automake autotools-dev m4 \
37     linux-headers-generic \
38     libaio-dev libattr1-dev libcap-dev
39
40 # Build binaries
41 WORKDIR /wheels
42 RUN pip3 install wheel
43 RUN pip3 wheel -r /wheels/requirements/pip-requirements.txt
44 RUN git clone https://gerrit.akraino.org/r/validation /opt/akraino/validation
45
46 # Build ltp tests
47 RUN mkdir -p /opt/akraino /root/src
48 WORKDIR  /root/src
49 RUN git clone https://github.com/linux-test-project/ltp.git
50 WORKDIR /root/src/ltp
51 RUN make autotools && \
52     ./configure --prefix=/opt/ltp && \
53     make -j $(getconf _NPROCESSORS_ONLN) 2>&1 | tee ../build-log.txt && \
54     make install 2>&1 | tee ../install-log.txt
55 RUN tar czvf /opt/akraino/ltp.tar.gz /opt/ltp
56 WORKDIR /root/src
57 RUN git clone https://github.com/CISOfy/lynis && tar czvf /opt/akraino/lynis-remote.tar.gz ./lynis
58
59 # Copy binaries into the final container and install robot framework
60 FROM ubuntu:18.04
61 COPY --from=build /wheels /wheels
62 COPY --from=build /opt/akraino/validation /opt/akraino/validation
63 COPY --from=build /opt/akraino/ltp.tar.gz /opt/akraino/ltp.tar.gz
64 COPY --from=build /opt/akraino/lynis-remote.tar.gz /opt/akraino/lynis-remote.tar.gz
65
66
67 RUN apt-get update && apt-get -y upgrade && apt-get -y install \
68     python3-pip python3.6 \
69     sqlite \
70     debian-goodies \
71     wget \
72     curl apt-transport-https ca-certificates software-properties-common && \
73     curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \
74     add-apt-repository "deb https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" && \
75     apt-get update && \
76     apt-get install -y docker-ce && \
77     cd /usr/bin && ln -s python3 python && \
78     pip3 install -r /wheels/requirements/pip-requirements.txt \
79                  -f /wheels && \
80     rm -rf /wheels && \
81     rm -rf /root/.cache/pip/* && \
82     rm -rf /var/cache/apt/* && \
83     rm -rf /var/lib/apt/lists/*
84
85 # Fetches vuls databases
86 SHELL ["/bin/bash", "-c"]
87 RUN wget https://dl.google.com/go/go1.12.6.linux-amd64.tar.gz -P /root/ && \
88     cd /root/ && \
89     tar -xzf go1.12.6.linux-amd64.tar.gz -C /root/ && \
90     export GOROOT=/root/go && \
91     export GOPATH=/root/go/src && \
92     export PATH=$PATH:/root/go/bin:/root/go/src/bin && \
93     mkdir -p /root/go/src/github.com/future-architect && \
94     cd /root/go/src/github.com/future-architect && \
95     git clone https://github.com/future-architect/vuls && \
96     cd vuls && \
97     make install && \
98     mkdir -p /root/go/src/github.com/kotakanbe && \
99     git -C /root/go/src/github.com/kotakanbe clone https://github.com/kotakanbe/go-cve-dictionary.git && \
100     cd /root/go/src/github.com/kotakanbe/go-cve-dictionary/ && \
101     make install && \
102     for i in $(seq 2002 "$(date +"%Y")"); do go-cve-dictionary fetchnvd -http-proxy=${HTTP_PROXY} -dbpath /opt/akraino/validation/tests/os/vuls/cve.sqlite3 -years "$i"; done && \
103     git -C /root/go/src/github.com/kotakanbe clone https://github.com/kotakanbe/goval-dictionary.git && \
104     cd /root/go/src/github.com/kotakanbe/goval-dictionary && \
105     make install && \
106     goval-dictionary fetch-ubuntu -http-proxy=${HTTP_PROXY} -dbpath=/opt/akraino/validation/tests/os/vuls/oval.sqlite3 16 && \
107     cd /opt/akraino/validation/tests/os/vuls && \
108     tar cvzf db.tar.gz *.sqlite3 && \
109     rm *.sqlite3
110
111 # Install bluval dependencies
112 RUN pip3 install -r /opt/akraino/validation/bluval/requirements.txt
113 ENV LC_ALL=C.UTF-8
114 ENV LANG=C.UTF-8