runtime/Makefile

22 lines
455 B
Makefile
Raw Normal View History

2021-11-19 17:09:15 +00:00
REPO=harbor.hq.rosti.cz/rosti/runtime
2020-02-02 21:06:11 +00:00
DOCKER=docker
VERSION=2022.01-1
2020-02-02 21:06:11 +00:00
all: build
build:
$(DOCKER) pull debian:11
2021-11-19 17:09:15 +00:00
$(DOCKER) build -t ${REPO}:dev .
2021-11-19 22:55:22 +00:00
$(DOCKER) tag ${REPO}:dev ${REPO}:$(VERSION)
2020-02-02 21:06:11 +00:00
2020-04-01 21:47:12 +00:00
test:
2021-12-03 23:58:15 +00:00
DOCKER=$(DOCKER) bash ./tests2.fish ${REPO}:$(VERSION)
2020-02-02 21:06:11 +00:00
squashed:
$(DOCKER) pull debian:11
2021-11-19 17:09:15 +00:00
$(DOCKER) build --squash -t ${REPO}:dev-squashed .
2021-11-19 22:55:22 +00:00
$(DOCKER) tag ${REPO}:dev-squashed ${REPO}:$(VERSION)
2020-02-02 21:06:11 +00:00
push: squashed
2021-11-19 17:09:15 +00:00
$(DOCKER) push ${REPO}:$(VERSION)