X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=docker%2Fos%2FDockerfile;h=58bed2322e1cd57bf197730370c0df5c43556aca;hb=c2475490514ec2573697b6707a82feb8fd4936b0;hp=41a0f070b267f0b70a329585bdc0d2533261ea8d;hpb=81fa8e8789ab70cd5058260d299510e5d88dea42;p=validation.git diff --git a/docker/os/Dockerfile b/docker/os/Dockerfile index 41a0f07..58bed23 100644 --- a/docker/os/Dockerfile +++ b/docker/os/Dockerfile @@ -15,18 +15,23 @@ ############################################################################## # ref: https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#use-multi-stage-builds -FROM python:3.6-alpine3.9 as build +FROM ubuntu:18.04 as build # Install dependencies COPY pip-requirements.txt /wheels/requirements/pip-requirements.txt -RUN apk --no-cache add --update \ - gcc \ - git \ - libc-dev \ - libffi \ - libffi-dev \ - make \ - openssl-dev +RUN apt-get update && apt-get -y install \ + python3-pip \ + gcc \ + git \ + libc-dev \ + libffi6 \ + libffi-dev \ + make \ + libssl-dev \ + build-essential \ + autoconf automake autotools-dev m4 \ + linux-headers-generic \ + libaio-dev libattr1-dev libcap-dev # Build binaries WORKDIR /wheels @@ -34,18 +39,38 @@ RUN pip3 install wheel RUN pip3 wheel -r /wheels/requirements/pip-requirements.txt RUN git clone https://gerrit.akraino.org/r/validation /opt/akraino/validation -# Copy binaries in the final contaier and install robot framework -FROM python:3.6-alpine3.9 +# Build ltp tests +RUN mkdir -p /opt/akraino /root/src +WORKDIR /root/src +RUN git clone https://github.com/linux-test-project/ltp.git +WORKDIR /root/src/ltp +RUN make autotools && \ + ./configure --prefix=/opt/ltp && \ + 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 pip3 install -r /wheels/requirements/pip-requirements.txt \ - -f /wheels && \ - rm -rf /wheels && \ - rm -rf /root/.cache/pip/* -# Set the default command for running the tests -CMD /usr/local/bin/robot --exitonfailure --loglevel DEBUG \ - --outputdir /opt/akraino/validation/results/os \ - /opt/akraino/validation/os/ltp.robot +RUN apt-get update && apt-get -y install \ + python3-pip python3.6 && \ + cd /usr/bin && ln -s python3 python && \ + pip3 install -r /wheels/requirements/pip-requirements.txt \ + -f /wheels && \ + rm -rf /wheels && \ + rm -rf /root/.cache/pip/* && \ + rm -rf /var/cache/apt/* && \ + rm -rf /var/lib/apt/lists/* +# Install bluval dependencies +RUN pip3 install -r /opt/akraino/validation/bluval/requirements.txt +ENV LC_ALL=C.UTF-8 +ENV LANG=C.UTF-8