mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-02-14 18:29:52 +00:00
- remove Helm v2 and Tiller - update Helm v3 to 3.5.0 - rename scripts dir to test Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
8 lines
181 B
Bash
Executable File
8 lines
181 B
Bash
Executable File
#! /usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
# build the docker file
|
|
GIT_COMMIT=$(git rev-list -1 HEAD) && \
|
|
DOCKER_BUILDKIT=1 docker build --tag test/podinfo --build-arg "REVISION=${GIT_COMMIT}" .
|