mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 10:19:35 +00:00
* Build and cross-compile binary named matchbox * Use matchbox binary in container images
8 lines
145 B
Bash
Executable File
8 lines
145 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
REPO=coreos/matchbox
|
|
GIT_SHA=$(./git-version)
|
|
|
|
docker build --rm=true -t $REPO:$GIT_SHA .
|
|
docker tag $REPO:$GIT_SHA $REPO:latest
|