initial commit
This commit is contained in:
commit
0e6be50e37
23 changed files with 1069 additions and 0 deletions
13
testapp/srv/Makefile
Normal file
13
testapp/srv/Makefile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
CC=docker
|
||||
APP=srv
|
||||
TAG=127.0.0.1:5000/testapp/$(APP):$(VERSION)
|
||||
|
||||
all: build push
|
||||
|
||||
build:
|
||||
$(CC) build --build-arg VERSION=$(VERSION) -t $(TAG) .
|
||||
|
||||
push:
|
||||
$(CC) push $(TAG)
|
||||
|
||||
.PHONY: build push
|
||||
Loading…
Add table
Add a link
Reference in a new issue