From 021d3314dac462de774e2daab3322f3734e79604 Mon Sep 17 00:00:00 2001 From: haji-haji-haji <45247746+haji-haji-haji@users.noreply.github.com> Date: Thu, 17 Jan 2019 10:42:02 +0900 Subject: [PATCH] Including cumulus_napalm module This is to add and allow a 3rd party module into Napalm specifically Cumulus Linux: https://github.com/napalm-automation-community/napalm-cumulus --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2646b85..62a0c6f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,6 +35,12 @@ ARG BRANCH=master ARG URL=https://github.com/digitalocean/netbox/archive/$BRANCH.tar.gz RUN wget -q -O - "${URL}" | tar xz \ && mv netbox* netbox +ARG CUMULUS_URL=https://github.com/napalm-automation-community/napalm-cumulus/archive/develop.tar.gz +RUN wget -q -O - "${CUMULUS_URL}" | tar xz + +WORKDIR /opt/napalm-cumulus-develop +RUN pip install -r requirements.txt + WORKDIR /opt/netbox RUN pip install -r requirements.txt