mirror of
https://github.com/minio/minio.git
synced 2025-01-12 23:43:22 -05:00
Merge pull request #986 from harshavardhana/fix-makefile
makefile: Fix docker image
This commit is contained in:
commit
f7029fc6f1
4
Makefile
4
Makefile
@ -70,10 +70,12 @@ pkg-remove:
|
||||
install: gomake-all
|
||||
|
||||
dockerimage: install
|
||||
@echo "Checking if docker is installed."
|
||||
@if [ ! -e /usr/bin/docker ]; then echo "Docker not installed, cannot build docker image. Please install 'sudo apt-get install docker.io'" && exit 1; fi
|
||||
@echo "Building docker image:" minio:$(TAG)
|
||||
@GO15VENDOREXPERIMENT=1 go build --ldflags $(DOCKER_LDFLAGS) -o minio.dockerimage
|
||||
@mkdir -p export
|
||||
@docker build --rm --tag=minio:$(TAG) .
|
||||
@sudo docker build --rm --tag=minio/minio:$(TAG) .
|
||||
@rmdir export
|
||||
@rm minio.dockerimage
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user