
Alpine linux is a tiny linux distribution which ideal for building docker images. for more commit details, this commit: - Build from nginx:alpine (nginx:alpine does not have versions) - Add full nginx.conf as nginx:alpine has a different nginx.conf then debian - Download forego in Dockerfile for better building caching - Change badge version ;-)
14 lines
296 B
Makefile
14 lines
296 B
Makefile
.SILENT :
|
|
.PHONY : test
|
|
|
|
update-dependencies:
|
|
docker pull jwilder/docker-gen:0.7.0
|
|
docker pull nginx:alpine
|
|
docker pull python:3
|
|
docker pull rancher/socat-docker:latest
|
|
docker pull appropriate/curl:latest
|
|
docker pull docker:1.9
|
|
|
|
test:
|
|
docker build -t jwilder/nginx-proxy:bats .
|
|
bats test
|