12 lines
227 B
Bash
12 lines
227 B
Bash
|
#!/bin/bash
|
||
|
# SPDX-License-Identifier: MIT
|
||
|
#
|
||
|
# Copyright 2018 Network Device Education Foundation, Inc. ("NetDEF")
|
||
|
|
||
|
cd "$(dirname "$0")"/..
|
||
|
|
||
|
exec docker build --pull \
|
||
|
--compress \
|
||
|
-t frrouting/topotests:latest \
|
||
|
.
|