calpine-os-linux/Makefile

9 lines
257 B
Makefile
Raw Normal View History

DOCKER_IMAGE_NAME = cubetiq/calpine-os-linux
DOCKER_IMAGE_SIZE = $(shell docker images --format "{{.Repository}} {{.Size}}" | grep $(DOCKER_IMAGE_NAME) | cut -d\ -f2)
build:
2021-03-26 11:02:54 +07:00
./src/build.sh
@echo "Size of the image: ${DOCKER_IMAGE_SIZE}"
2021-03-26 11:02:54 +07:00
.PHONY: build