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
This commit is contained in:
haji-haji-haji 2019-01-17 10:42:02 +09:00 committed by GitHub
parent c9d9c7349e
commit 021d3314da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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