diff options
author | johannst <johannes.stoelp@gmail.com> | 2020-09-29 04:40:20 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2020-09-29 04:40:20 +0200 |
commit | 4e8077443a40afcf0d3c3c2366a214b15e31182e (patch) | |
tree | 72545f89f23fa560fa261e26d92184950d64e0af /docker/build.sh | |
parent | 533a9e57de8cb74594499f625810ad812359d3fb (diff) | |
download | matcha-threads-4e8077443a40afcf0d3c3c2366a214b15e31182e.tar.gz matcha-threads-4e8077443a40afcf0d3c3c2366a214b15e31182e.zip |
added dockerfile with arm64 cross tools
Diffstat (limited to 'docker/build.sh')
-rwxr-xr-x | docker/build.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docker/build.sh b/docker/build.sh new file mode 100755 index 0000000..bfbdd4b --- /dev/null +++ b/docker/build.sh @@ -0,0 +1,9 @@ +#!/bin/bash +# Copyright (c) 2020 Johannes Stoelp + +if ! docker build -t matcha-box . ; then + echo "ERR: Failed to build docker image!" + exit 1 +fi + +exit 0 |