| # SPDX-FileCopyrightText: Copyright 2021-present Open Networking Foundation. |
| # SPDX-License-Identifier: Apache-2.0 |
| ARG SCAPY_VER=2.4.5 |
| ARG TREX_VER=3b19ddcf67e33934f268b09d3364cd87275d48db |
| ARG TREX_EXT_LIBS=/external_libs |
| ARG TREX_LIBS=/trex_python |
| ARG KUBECTL=v1.22.1 |
| |
| # Install TRex deps |
| FROM alpine:3.12.1 as trex-builder |
| ARG TREX_VER |
| ARG TREX_EXT_LIBS |
| ARG TREX_LIBS |
| # Install Trex library |
| ENV TREX_SCRIPT_DIR=/trex-core-${TREX_VER}/scripts |
| RUN wget https://github.com/stratum/trex-core/archive/${TREX_VER}.zip |
| RUN unzip -qq ${TREX_VER}.zip && \ |
| mkdir -p /output/${TREX_EXT_LIBS} && \ |
| mkdir -p /output/${TREX_LIBS} && \ |
| cp -r ${TREX_SCRIPT_DIR}/automation/trex_control_plane/interactive/* /output/${TREX_LIBS} && \ |
| cp -r ${TREX_SCRIPT_DIR}/external_libs/* /output/${TREX_EXT_LIBS} && \ |
| cp -r ${TREX_SCRIPT_DIR}/automation/trex_control_plane/stf/trex_stf_lib /output/${TREX_LIBS} |
| |
| FROM ubuntu:20.04 |
| ARG TREX_EXT_LIBS |
| ARG TREX_LIBS |
| ARG SCAPY_VER |
| ARG KUBECTL |
| ENV PACKAGES \ |
| python \ |
| python3 \ |
| python3-pip \ |
| ssh \ |
| openssh-server \ |
| curl \ |
| supervisor \ |
| git |
| ADD requirements.txt / |
| |
| COPY --from=trex-builder /output / |
| |
| RUN apt update && \ |
| apt install --no-install-recommends -y $PACKAGES && \ |
| curl -L "https://dl.k8s.io/release/$KUBECTL/bin/linux/amd64/kubectl" -o /usr/local/bin/kubectl && \ |
| chmod 0755 /usr/local/bin/kubectl && \ |
| curl https://bootstrap.pypa.io/pip/2.7/get-pip.py | python && \ |
| python -m pip install setuptools && \ |
| python -m pip install -r requirements.txt && \ |
| python3 -m pip install p4runtime-shell==0.0.2 && \ |
| cd ${TREX_EXT_LIBS}/scapy-${SCAPY_VER} && python setup.py install && \ |
| mkdir -p /var/run/sshd && \ |
| mkdir -p /var/log/supervisor && \ |
| useradd -m jenkins && \ |
| chmod 777 /tmp && \ |
| chsh -s /bin/bash jenkins && \ |
| echo jenkins:jenkins | chpasswd |
| |
| RUN curl -sS --fail "https://repo1.maven.org/maven2/org/onosproject/onos-releases/2.5.4/onos-admin-2.5.4.tar.gz" | tar zx && \ |
| mv onos-admin-2.5.4/* /usr/local/bin/ && \ |
| rm -r onos-admin-2.5.4 |
| |
| ENV PYTHONPATH=${TREX_EXT_LIBS}:${TREX_LIBS} |
| # TODO: should we parametrize those? |
| ENV OC1=localhost |
| ENV OC2=localhost |
| ENV OC3=localhost |
| ADD docker/fs / |
| RUN chown -R jenkins.jenkins /home/jenkins && \ |
| python -m pip install -r /tmp/additional-py-pkgs.txt |
| |
| CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/supervisord.conf"] |
| |
| EXPOSE 22 |