Update .gitignore

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
This commit is contained in:
Gabriel Adrian Samfira 2022-06-30 10:21:32 +00:00
parent bbbe67bf7c
commit 9e949d833f
3 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View file

@ -11,5 +11,6 @@
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
bin/
# Dependency directories (remove the comment below to include it)
# vendor/

View file

@ -5,7 +5,7 @@ SHELL := bash
IMAGE_TAG = garm-build
build-static:
@echo Building metal hub
@echo Building garm
docker build --tag $(IMAGE_TAG) .
docker run --rm -e USER_ID="$(shell id -u)" -e USER_GROUP="$(shell id -g)" -v $(PWD):/build/garm $(IMAGE_TAG) /build-static.sh
@echo Binaries are available in $(PWD)/bin

View file