summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 924ddb12..932fe9f3 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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 ~