blob: c6a1fe8314c825231fb6f52fbf49a5365d7afb5e [file] [log] [blame]
Oleksii Zhurba4ccdbf22018-09-04 21:00:19 -05001FROM ubuntu:16.04
2
azvyagintsevec38a1c2018-12-18 16:10:14 +02003LABEL maintainer="dev@mirantis.com"
4
5ENV DEBIAN_FRONTEND=noninteractive \
6 DEBCONF_NONINTERACTIVE_SEEN=true \
7 LANG=C.UTF-8 \
8 LANGUAGE=$LANG
azvyagintseve67f7352018-12-20 16:11:40 +02009SHELL ["/bin/bash", "-o", "pipefail", "-c"]
azvyagintsevec38a1c2018-12-18 16:10:14 +020010
Oleksii Zhurba4ccdbf22018-09-04 21:00:19 -050011USER root
azvyagintsevec38a1c2018-12-18 16:10:14 +020012RUN mkdir -p /var/lib/cvp-sanity/
13COPY cvp-sanity/ /var/lib/cvp-sanity
azvyagintseve67f7352018-12-20 16:11:40 +020014ARG UBUNTU_MIRROR_URL="http://archive.ubuntu.com/ubuntu"
Oleksii Zhurba4ccdbf22018-09-04 21:00:19 -050015
16WORKDIR /var/lib/
17
azvyagintseve67f7352018-12-20 16:11:40 +020018RUN set -ex; pushd /etc/apt/ && echo > sources.list && \
19 echo 'Acquire::Languages "none";' > apt.conf.d/docker-no-languages && \
20 echo 'Acquire::GzipIndexes "true"; Acquire::CompressionTypes::Order:: "gz";' > apt.conf.d/docker-gzip-indexes && \
21 echo 'APT::Get::Install-Recommends "false"; APT::Get::Install-Suggests "false";' > apt.conf.d/docker-recommends && \
22 echo "deb [arch=amd64] $UBUNTU_MIRROR_URL xenial main restricted universe multiverse" >> sources.list && \
23 echo "deb [arch=amd64] $UBUNTU_MIRROR_URL xenial-updates main restricted universe multiverse" >> sources.list && \
24 echo "deb [arch=amd64] $UBUNTU_MIRROR_URL xenial-backports main restricted universe multiverse" >> sources.list && \
25 popd ; apt-get update && apt-get upgrade -y && \
26 apt-get install -y curl git-core iputils-ping libffi-dev libldap2-dev libsasl2-dev libssl-dev patch python-dev python-pip python3-dev vim-tiny wget \
27 python-virtualenv python3-virtualenv && \
azvyagintsevec38a1c2018-12-18 16:10:14 +020028#Due to upstream bug we should use fixed version of pip
azvyagintseve67f7352018-12-20 16:11:40 +020029 python -m pip install --upgrade 'pip==9.0.3' && \
30 pip install -r cvp-sanity/requirements.txt && \
azvyagintsevec38a1c2018-12-18 16:10:14 +020031# Cleanup
azvyagintseve67f7352018-12-20 16:11:40 +020032 apt-get -y purge libx11-data xauth libxmuu1 libxcb1 libx11-6 libxext6 ppp pppconfig pppoeconf popularity-contest cpp gcc g++ libssl-doc && \
33 apt-get -y autoremove; apt-get -y clean ; rm -rf /root/.cache; rm -rf /var/lib/apt/lists/* && \
34 rm -rf /tmp/* ; rm -rf /var/tmp/* ; rm -rfv /etc/apt/sources.list.d/* ; echo > /etc/apt/sources.list
azvyagintsevec38a1c2018-12-18 16:10:14 +020035COPY bin /usr/local/bin/
36ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
37# docker build --no-cache -t cvp-sanity-checks:$(date "+%Y_%m_%d_%H_%M_%S") .