X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=docker%2Fos%2FDockerfile;h=fc0d033d968b04419f291dde48ad92fdd978e6c2;hb=fa62d27c82de85dc9c1d703fc8e1026169881fe8;hp=291267b78f7a736a620f7f02b726109f22bfb967;hpb=e51d50c18ffbcd77a4ba60bac9e52bb8e461e277;p=validation.git diff --git a/docker/os/Dockerfile b/docker/os/Dockerfile index 291267b..fc0d033 100644 --- a/docker/os/Dockerfile +++ b/docker/os/Dockerfile @@ -28,7 +28,11 @@ RUN apt-get update && apt-get -y install \ libffi-dev \ make \ libssl-dev \ + golint \ + sqlite3 \ + debian-goodies \ build-essential \ + pkg-config \ autoconf automake autotools-dev m4 \ linux-headers-generic \ libaio-dev libattr1-dev libcap-dev @@ -49,15 +53,28 @@ RUN make autotools && \ make -j $(getconf _NPROCESSORS_ONLN) 2>&1 | tee ../build-log.txt && \ make install 2>&1 | tee ../install-log.txt RUN tar czvf /opt/akraino/ltp.tar.gz /opt/ltp +WORKDIR /root/src +RUN git clone https://github.com/CISOfy/lynis && tar czvf /opt/akraino/lynis-remote.tar.gz ./lynis # Copy binaries into the final container and install robot framework FROM ubuntu:18.04 COPY --from=build /wheels /wheels COPY --from=build /opt/akraino/validation /opt/akraino/validation COPY --from=build /opt/akraino/ltp.tar.gz /opt/akraino/ltp.tar.gz +COPY --from=build /opt/akraino/lynis-remote.tar.gz /opt/akraino/lynis-remote.tar.gz -RUN apt-get update && apt-get -y install \ - python3-pip && \ + +RUN apt-get update && apt-get -y upgrade && apt-get -y install \ + python3-pip python3.6 \ + sqlite \ + debian-goodies \ + wget \ + curl apt-transport-https ca-certificates software-properties-common && \ + curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \ + add-apt-repository "deb https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" && \ + apt-get update && \ + apt-get install -y docker-ce && \ + cd /usr/bin && ln -s python3 python && \ pip3 install -r /wheels/requirements/pip-requirements.txt \ -f /wheels && \ rm -rf /wheels && \ @@ -65,5 +82,33 @@ RUN apt-get update && apt-get -y install \ rm -rf /var/cache/apt/* && \ rm -rf /var/lib/apt/lists/* -# Install blueval dependencies +# Fetches vuls databases +SHELL ["/bin/bash", "-c"] +RUN wget https://dl.google.com/go/go1.12.6.linux-amd64.tar.gz -P /root/ && \ + cd /root/ && \ + tar -xzf go1.12.6.linux-amd64.tar.gz -C /root/ && \ + export GOROOT=/root/go && \ + export GOPATH=/root/go/src && \ + export PATH=$PATH:/root/go/bin:/root/go/src/bin && \ + mkdir -p /root/go/src/github.com/future-architect && \ + cd /root/go/src/github.com/future-architect && \ + git clone https://github.com/future-architect/vuls && \ + cd vuls && \ + make install && \ + mkdir -p /root/go/src/github.com/kotakanbe && \ + git -C /root/go/src/github.com/kotakanbe clone https://github.com/kotakanbe/go-cve-dictionary.git && \ + cd /root/go/src/github.com/kotakanbe/go-cve-dictionary/ && \ + make install && \ + 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 && \ + git -C /root/go/src/github.com/kotakanbe clone https://github.com/kotakanbe/goval-dictionary.git && \ + cd /root/go/src/github.com/kotakanbe/goval-dictionary && \ + make install && \ + goval-dictionary fetch-ubuntu -http-proxy=${HTTP_PROXY} -dbpath=/opt/akraino/validation/tests/os/vuls/oval.sqlite3 16 && \ + cd /opt/akraino/validation/tests/os/vuls && \ + tar cvzf db.tar.gz *.sqlite3 && \ + rm *.sqlite3 + +# Install bluval dependencies RUN pip3 install -r /opt/akraino/validation/bluval/requirements.txt +ENV LC_ALL=C.UTF-8 +ENV LANG=C.UTF-8