summaryrefslogtreecommitdiffhomepage
path: root/test/scenario_test
diff options
context:
space:
mode:
authorNaoto Hanaue <hanaue.naoto@po.ntts.co.jp>2015-09-16 18:03:31 +0900
committerNaoto Hanaue <hanaue.naoto@po.ntts.co.jp>2015-09-16 18:03:31 +0900
commitfa613119057abbd7e6f6626a941efd81a47fe406 (patch)
tree3e0da80cd1fb35e3b0907a317bd5213186f29415 /test/scenario_test
parentd026fabfea3f529fd6148cb487e24dab48a73081 (diff)
scenario_test: change docker base image to use in the make_gobgp_ctn()
Diffstat (limited to 'test/scenario_test')
-rw-r--r--test/scenario_test/lib/base.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/scenario_test/lib/base.py b/test/scenario_test/lib/base.py
index 169b223c..79e97521 100644
--- a/test/scenario_test/lib/base.py
+++ b/test/scenario_test/lib/base.py
@@ -75,7 +75,7 @@ class CmdBuffer(list):
return self.delim.join(self)
-def make_gobgp_ctn(tag='gobgp', local_gobgp_path='', from_image='golang:1.4'):
+def make_gobgp_ctn(tag='gobgp', local_gobgp_path='', from_image='osrg/quagga'):
if local_gobgp_path == '':
local_gobgp_path = os.getcwd()
@@ -86,8 +86,6 @@ def make_gobgp_ctn(tag='gobgp', local_gobgp_path='', from_image='golang:1.4'):
c << 'RUN go install github.com/osrg/gobgp/gobgpd'
c << 'RUN go get github.com/osrg/gobgp/gobgp'
c << 'RUN go install github.com/osrg/gobgp/gobgp'
- c << 'RUN apt-get update'
- c << 'RUN apt-get install -qy --no-install-recommends quagga telnet'
rindex = local_gobgp_path.rindex('gobgp')
if rindex < 0: