mirror of
https://github.com/thib8956/nginx-proxy
synced 2024-11-22 20:06:30 +00:00
197d793a25
Experimentation to see if it is worth the effort
18 lines
359 B
Makefile
18 lines
359 B
Makefile
.SILENT :
|
|
.PHONY : test-debian test-alpine test
|
|
|
|
|
|
update-dependencies:
|
|
requirements/build.sh
|
|
pip install -U -r requirements.txt
|
|
|
|
test-debian: update-dependencies
|
|
docker build -t jwilder/nginx-proxy:test ..
|
|
pytest
|
|
|
|
test-alpine: update-dependencies
|
|
docker build -f ../Dockerfile.alpine -t jwilder/nginx-proxy:test ..
|
|
pytest
|
|
|
|
test: test-debian test-alpine
|