mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-05-21 08:52:46 +00:00
9 lines
149 B
Bash
Executable File
9 lines
149 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
|
|
GIT_COMMIT=$(git rev-list -1 HEAD)
|
|
|
|
docker build -t test/podinfo:latest --build-arg "REVISION=${GIT_COMMIT}" .
|
|
|