calpine-os-linux/Makefile
2021-03-26 12:30:37 +07:00

11 lines
292 B
Makefile

DOCKER_IMAGE_NAME = cubetiq/calpine-os-linux
DOCKER_IMAGE_SIZE = $(shell docker images --format "{{.Repository}} {{.Size}}" | grep $(DOCKER_IMAGE_NAME) | cut -d\ -f2)
build:
./src/build.sh
@echo "Size of the image: ${DOCKER_IMAGE_SIZE}"
docker push ${DOCKER_IMAGE_NAME}
.PHONY: build