diff options
author | Naoto Hanaue <hanaue.naoto@po.ntts.co.jp> | 2015-09-16 18:03:31 +0900 |
---|---|---|
committer | Naoto Hanaue <hanaue.naoto@po.ntts.co.jp> | 2015-09-16 18:03:31 +0900 |
commit | fa613119057abbd7e6f6626a941efd81a47fe406 (patch) | |
tree | 3e0da80cd1fb35e3b0907a317bd5213186f29415 /test/scenario_test/lib | |
parent | d026fabfea3f529fd6148cb487e24dab48a73081 (diff) |
scenario_test: change docker base image to use in the make_gobgp_ctn()
Diffstat (limited to 'test/scenario_test/lib')
-rw-r--r-- | test/scenario_test/lib/base.py | 4 |
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: |