Add build scripts and dockerfile

This commit is contained in:
2022-11-15 18:14:08 +01:00
parent 5d40cde0c8
commit 11d703efcb
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
TAG="ruakij/routingtabletowg"
PLATFORM="linux/amd64,linux/arm64/v8,linux/arm/v7"
EXTRA_ARGS="$@"
docker buildx build \
--platform $PLATFORM \
--tag $TAG \
$EXTRA_ARGS
.

7
build/docker-ownarch.sh Executable file
View File

@@ -0,0 +1,7 @@
TAG="ruakij/routingtabletowg"
EXTRA_ARGS="$@"
docker build \
--tag $TAG \
$EXTRA_ARGS \
.