2021-12-23 09:33:45 +07:00
|
|
|
DOCKER_IMAGE = cubetiq/calpine-os-linux:3.13
|
|
|
|
DOCKER_IMAGE_SIZE = $(shell docker images --format "{{.Repository}} {{.Size}}" | grep $(DOCKER_IMAGE) | cut -d\ -f2)
|
2021-03-26 10:15:40 +07:00
|
|
|
build:
|
2021-03-26 11:02:54 +07:00
|
|
|
./src/build.sh
|
2021-03-26 10:15:40 +07:00
|
|
|
@echo "Size of the image: ${DOCKER_IMAGE_SIZE}"
|
2021-03-26 12:36:17 +07:00
|
|
|
docker push ${DOCKER_IMAGE}
|
2021-03-26 12:20:52 +07:00
|
|
|
|
2021-03-26 11:02:54 +07:00
|
|
|
.PHONY: build
|