86955e2b04
Signed-off-by: Guohan Lu <lguohan@gmail.com>
178 lines
5.1 KiB
Django/Jinja
178 lines
5.1 KiB
Django/Jinja
FROM ubuntu:16.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y \
|
|
openssh-server \
|
|
gcc \
|
|
vim \
|
|
make \
|
|
git \
|
|
sudo \
|
|
python \
|
|
python-dev \
|
|
python-cffi \
|
|
libffi-dev \
|
|
libssl-dev \
|
|
sshpass \
|
|
libxml2 \
|
|
libxslt1-dev \
|
|
python-setuptools \
|
|
build-essential \
|
|
curl \
|
|
cmake \
|
|
tcpdump \
|
|
snmp \
|
|
python-scapy \
|
|
inetutils-ping \
|
|
telnet
|
|
|
|
# For JNLP launcher
|
|
RUN apt-get install -y default-jre
|
|
|
|
# For syslog test
|
|
RUN apt-get install -y rsyslog psmisc
|
|
|
|
# Remove cffi 1.5.2, will install 1.10.0 by pip later
|
|
RUN apt-get purge -y python-cffi python-cffi-backend
|
|
# Remove pycparser 2.14, will install >=2.17 by pip later
|
|
RUN apt-get purge -y python-ply python-pycparser
|
|
|
|
RUN easy_install pip==20.1.1
|
|
|
|
RUN pip install ipaddr \
|
|
lxml \
|
|
netaddr \
|
|
natsort \
|
|
six \
|
|
pexpect \
|
|
pyasn1==0.1.9 \
|
|
pysnmp==4.2.5 \
|
|
jinja2==2.7.2 \
|
|
cffi==1.10.0 \
|
|
paramiko==2.1.2 \
|
|
passlib \
|
|
ipython==5.4.1 \
|
|
virtualenv \
|
|
"cryptography>=2.5" \
|
|
"future>=0.16.0" \
|
|
gitpython \
|
|
jsonpatch \
|
|
netmiko==2.4.2 \
|
|
prettytable \
|
|
psutil \
|
|
pycryptodome \
|
|
pyfiglet \
|
|
pylint==1.8.1 \
|
|
pyro4 \
|
|
pytest-repeat \
|
|
pytest-xdist==1.28.0 \
|
|
pytest==4.6.5 \
|
|
redis \
|
|
requests \
|
|
rpyc \
|
|
tabulate \
|
|
textfsm \
|
|
ixnetwork-restpy==1.0.52 \
|
|
&& git clone https://github.com/p4lang/scapy-vxlan.git \
|
|
&& cd scapy-vxlan \
|
|
&& python setup.py install \
|
|
&& cd .. \
|
|
&& rm -fr scapy-vxlan \
|
|
&& wget https://github.com/nanomsg/nanomsg/archive/1.0.0.tar.gz \
|
|
&& tar xvfz 1.0.0.tar.gz \
|
|
&& cd nanomsg-1.0.0 \
|
|
&& mkdir -p build \
|
|
&& cd build \
|
|
&& cmake .. \
|
|
&& make install \
|
|
&& ldconfig \
|
|
&& cd ../.. \
|
|
&& rm -fr nanomsg-1.0.0 \
|
|
&& rm -f 1.0.0.tar.gz \
|
|
&& pip install nnpy \
|
|
&& pip install dpkt
|
|
|
|
# Install docker-ce-cli
|
|
RUN apt-get update \
|
|
&& apt-get install -y \
|
|
apt-transport-https \
|
|
ca-certificates \
|
|
curl \
|
|
gnupg-agent \
|
|
software-properties-common \
|
|
&& curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \
|
|
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" \
|
|
&& apt-get update \
|
|
&& apt-get install -y docker-ce-cli
|
|
|
|
# Install Microsoft Azure Kusto Library for Python
|
|
RUN pip install azure-kusto-data==0.0.13 \
|
|
azure-kusto-ingest==0.0.13
|
|
|
|
# Install pytest-ansible module
|
|
RUN pip install wheel==0.33.6
|
|
RUN pip install pytest-ansible==2.2.2
|
|
|
|
## Copy and install sonic-mgmt docker dependencies
|
|
COPY \
|
|
{% for deb in docker_sonic_mgmt_debs.split(' ') -%}
|
|
debs/{{ deb }}{{' '}}
|
|
{%- endfor -%}
|
|
debs/
|
|
|
|
RUN dpkg -i \
|
|
{% for deb in docker_sonic_mgmt_debs.split(' ') -%}
|
|
debs/{{ deb }}{{' '}}
|
|
{%- endfor %}
|
|
|
|
RUN pip install ansible==2.8.7
|
|
|
|
RUN pip install pysubnettree
|
|
|
|
RUN mkdir /var/run/sshd
|
|
EXPOSE 22
|
|
|
|
# Add user
|
|
ARG user
|
|
ARG uid
|
|
ARG guid
|
|
ARG hostname
|
|
|
|
ENV BUILD_HOSTNAME $hostname
|
|
ENV USER $user
|
|
ENV CC=gcc CPP=cpp CXX=c++ LDSHARED="gcc -pthread -shared" PYMSSQL_BUILD_WITH_BUNDLED_FREETDS=1
|
|
|
|
RUN groupadd -f -r -g $guid g$user
|
|
|
|
RUN useradd $user -l -u $uid -g $guid -d /var/$user -m -s /bin/bash
|
|
|
|
COPY sonic-jenkins.pub /var/$user/.ssh/authorized_keys2
|
|
|
|
RUN echo "Host *\n\tStrictHostKeyChecking no\n" > /var/$user/.ssh/config
|
|
RUN chown $user /var/$user/.ssh -R
|
|
RUN chmod go= /var/$user/.ssh -R
|
|
|
|
# Add user to sudoers
|
|
RUN echo "$user ALL=(ALL) NOPASSWD:ALL" >>/etc/sudoers
|
|
|
|
USER $user
|
|
|
|
# Install Azure CLI
|
|
WORKDIR /var/$user
|
|
RUN curl -L https://aka.ms/InstallAzureCliBundled -o azure-cli_bundle.tar.gz
|
|
RUN tar -xvzf azure-cli_bundle.tar.gz
|
|
RUN azure-cli_bundle_*/installer
|
|
|
|
# Known bug: azure keyvault cannot work behind a proxy
|
|
# Temporary fix: upgrade the azure-keyvault package within az cli
|
|
# TODO: if azure-cli contains newer version azure-keyvault, remove this
|
|
RUN ~/lib/azure-cli/bin/python -m pip install azure-keyvault==0.3.7 -U
|
|
|
|
# Install Virtual Environment
|
|
RUN python -m virtualenv --system-site-packages env-201811
|
|
RUN env-201811/bin/pip install ansible==2.0.0.2
|
|
|
|
RUN git clone https://github.com/Azure/sonic-mgmt
|