1
0
mirror of /repos/baseimage-docker.git synced 2025-12-30 08:01:31 +01:00

Run 'docker build' with '--rm' instead of '-rm', the latter which has been deprecated in Docker 0.9.

This commit is contained in:
Hongli Lai (Phusion) 2014-03-25 15:49:46 +01:00
parent e11f2b8cfd
commit dfaac83527
No known key found for this signature in database
GPG Key ID: 06A131094B6F4332

View File

@ -6,7 +6,7 @@ VERSION = 0.9.9
all: build all: build
build: build:
docker build -t $(NAME):$(VERSION) -rm image docker build -t $(NAME):$(VERSION) --rm image
test: test:
env NAME=$(NAME) VERSION=$(VERSION) ./test/runner.sh env NAME=$(NAME) VERSION=$(VERSION) ./test/runner.sh