mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-14 22:59:38 +00:00
12 lines
270 B
Bash
Executable File
12 lines
270 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
# Copyright 2018 Network Device Education Foundation, Inc. ("NetDEF")
|
|
|
|
cd "$(dirname "$0")"/..
|
|
|
|
exec $(command -v docker || command -v podman) build --pull \
|
|
--compress \
|
|
-t frrouting/topotests:latest \
|
|
.
|