1
0
mirror of https://github.com/mikefarah/yq.git synced 2025-01-18 04:46:16 +00:00
yq/scripts/publish-docker.sh

9 lines
199 B
Bash
Raw Normal View History

2018-10-25 06:49:46 +00:00
#!/bin/bash
set -ex
VERSION="$(git describe --tags --abbrev=0)"
docker build \
--target production \
--build-arg VERSION=${VERSION} \
-t mikefarah/yq:latest \
-t mikefarah/yq:${VERSION} \
.