runtime/Makefile
Adam Štrauch 65e5907eb7
Some checks failed
continuous-integration/drone/push Build is failing
Drone CI build
* Bump version
2021-09-21 00:57:09 +02:00

20 lines
382 B
Makefile

DOCKER=docker
VERSION=2021.09-1
all: build
build:
$(DOCKER) pull debian:buster
$(DOCKER) build -t rosti/runtime:dev .
test:
DOCKER=$(DOCKER) ./tests.sh
squashed:
$(DOCKER) pull debian:buster
$(DOCKER) build --squash -t rosti/runtime:dev-squashed .
push: squashed
$(DOCKER) tag rosti/runtime:dev-squashed rosti/runtime:$(VERSION)
$(DOCKER) push rosti/runtime:$(VERSION)