Initial commit

This commit is contained in:
Christopher Crone
2020-05-28 13:29:02 +02:00
commit bff6023b1a
12 changed files with 275 additions and 0 deletions

18
Makefile Normal file
View File

@@ -0,0 +1,18 @@
all: bin/example
test: lint unit-test
PLATFORM=local
.PHONY: bin/example
bin/example:
@docker build . --target bin \
--output bin/ \
--platform ${PLATFORM}
.PHONY: unit-test
unit-test:
@docker build . --target unit-test
.PHONY: lint
lint:
@docker build . --target lint