Makefile 458 B

123456789101112131415161718192021
  1. .SILENT :
  2. .PHONY : test
  3. update-dependencies:
  4. docker pull jwilder/docker-gen:0.7.3
  5. docker pull nginx:1.11.6
  6. docker pull nginx:1.11.8-alpine
  7. docker pull python:3
  8. docker pull rancher/socat-docker:latest
  9. docker pull appropriate/curl:latest
  10. docker pull docker:1.10
  11. test-debian:
  12. docker build -t jwilder/nginx-proxy:bats .
  13. bats test
  14. test-alpine:
  15. docker build -f Dockerfile.alpine -t jwilder/nginx-proxy:bats .
  16. bats test
  17. test: test-debian test-alpine