initial commit

This commit is contained in:
Carl Pearson
2017-11-14 07:49:22 -06:00
parent 0be58646a6
commit 1da35e8baf
3 changed files with 41 additions and 0 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
all: build
.PHONY: build build_and_push
build:
@docker build -t cwpearson/doxygen:latest .
build_and_push: build
@docker push cwpearson/doxygen:latest
.PHONY: test
test: build
docker run --rm -it cwpearson/doxygen doxygen -version
docker run -u 1000:1000 --rm -it cwpearson/doxygen doxygen -version
travis_push: build
@docker login -u $(DOCKER_USER) $(DOCKER_PASS)
@docker push cwpearson/doxygen:latest