Provide basic deployment instructions

This commit introduces a Dockerfile with some basic deployment
instructions, as well as a makefile for convinience.
This commit is contained in:
Solly Ross 2017-06-24 01:35:14 -04:00
parent 4dd94c3c85
commit 66cf5eaafb
4 changed files with 79 additions and 0 deletions

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
all: build
build:
go build cmd/adapter.go
.PHONY: build
docker-build: adapter
docker build -t cm-adapter -f deploy/Dockerfile .
.PHONY: docker-build
clean:
rm adapter
.PHONY: clean