runtime/Makefile
Adam Štrauch 5e446efd24
Fix rosti.sh
* Check if symlink exists before it's created
2021-03-08 11:45:06 +01:00

20 lines
382 B
Makefile

DOCKER=docker
VERSION=2021.03-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)