Skip to content

Commit

Permalink
Add NAPALM Dockerfile (#770)
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceaulinic authored and ktbyers committed Oct 2, 2018
1 parent d1beb97 commit 20cbf6e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM debian:stretch

## Install min deps
RUN apt-get update

COPY ./ /var/cache/napalm/

## Install NAPALM & underlying libraries dependencies
RUN apt-get install -y python-cffi python-dev libxslt1-dev libssl-dev libffi-dev \
&& apt-get install -y python-pip \
&& pip install -U cffi \
&& pip install -U cryptography \
&& pip install /var/cache/napalm/

RUN rm -rf /var/lib/apt/lists/*

0 comments on commit 20cbf6e

Please sign in to comment.