1
0
mirror of https://github.com/nginx-proxy/nginx-proxy synced 2024-09-28 23:11:39 +02:00
nginx-proxy/Makefile
Thomas LEVEIL 197d793a25 TESTS: rewrite tests using pytest and docker-compose
Experimentation to see if it is worth the effort
2017-02-16 21:40:54 +01:00

28 lines
554 B
Makefile

.SILENT :
.PHONY : test test2
update-dependencies:
docker pull jwilder/docker-gen:0.7.3
docker pull nginx:1.11.9
docker pull nginx:1.11.9-alpine
docker pull python:3
docker pull rancher/socat-docker:latest
docker pull appropriate/curl:latest
docker pull docker:1.10
test-debian:
docker build -t jwilder/nginx-proxy:bats .
bats test
test-alpine:
docker build -f Dockerfile.alpine -t jwilder/nginx-proxy:bats .
bats test
test: test-debian test-alpine
test2-debian:
$(MAKE) -C test2 test-debian
test2-alpine:
$(MAKE) -C test2 test-alpine