diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3,7 +3,8 @@ # in order to easy exprort images built to "external" world FROM debian:jessie -RUN apt-get update &&\ +RUN echo 'deb http://ftp.debian.org/debian jessie-backports main' | tee -a /etc/apt/sources.list &&\ + apt-get update &&\ apt-get install -y \ vim \ git \ @@ -28,6 +29,7 @@ RUN apt-get update &&\ bison \ libperl-dev \ libnfnetlink-dev \ + python3-git \ && rm -rf /var/lib/apt/lists/* WORKDIR ~ |