
Cleanup test containers when possible during tests. Add 'test-clean' make target for remaining bat-* containers.
17 lines
358 B
Makefile
17 lines
358 B
Makefile
.SILENT :
|
|
.PHONY : test
|
|
|
|
update-dependencies:
|
|
docker pull jwilder/docker-gen:latest
|
|
docker pull nginx:latest
|
|
docker pull python:3
|
|
docker pull rancher/socat-docker:latest
|
|
docker pull appropriate/curl:latest
|
|
docker pull docker:1.9.1
|
|
|
|
test:
|
|
docker build -t dmp1ce/nginx-proxy-letsencrypt:bats .
|
|
bats test
|
|
|
|
test-clean:
|
|
./test/cleanup_test_containers.sh
|