1
0
mirror of https://github.com/nginx-proxy/nginx-proxy synced 2024-09-28 15:01:27 +02:00
nginx-proxy/Makefile
Nicolas Duchon ad7c02570b
chore: use nginxproxy's DockerHub registry
Transitioning away from jwilder/nginx-proxy
Please see #1304 for more details
2021-04-01 16:06:09 +02:00

17 lines
345 B
Makefile

.SILENT :
.PHONY : test-debian test-alpine test
update-dependencies:
test/requirements/build.sh
test-debian: update-dependencies
docker build -t nginxproxy/nginx-proxy:test .
test/pytest.sh
test-alpine: update-dependencies
docker build -f Dockerfile.alpine -t nginxproxy/nginx-proxy:test .
test/pytest.sh
test: test-debian test-alpine