8 lines
183 B
Bash
Executable file
8 lines
183 B
Bash
Executable file
###!/usr/bin/env bash
|
|
|
|
read -p 'Tag: ' tag
|
|
|
|
|
|
docker build --no-cache --tag bloaterbot:$(git log -1 --pretty=%h) --tag bloaterbot:$tag --build-arg=COMMIT=$(git log -1 --pretty=%h) .
|
|
|
|
|