mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 18:19:36 +00:00
8 lines
147 B
Bash
Executable File
8 lines
147 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
REPO=coreos/bootcfg
|
|
GIT_SHA=$(./git-version)
|
|
|
|
docker build -q --rm=true -t $REPO:$GIT_SHA .
|
|
docker tag $REPO:$GIT_SHA $REPO:latest
|