9 lines
136 B
Makefile
9 lines
136 B
Makefile
REPO=harbor.hq.rosti.cz/library/builder
|
|
VERSION=38
|
|
|
|
build:
|
|
docker build -t ${REPO}:${VERSION} .
|
|
|
|
push:
|
|
docker push ${REPO}:${VERSION}
|