Add highcharts latest version and add more fonts

This commit is contained in:
2023-12-13 12:12:28 +07:00
parent 5116a6051f
commit 11314baac4
23 changed files with 39 additions and 23 deletions

View File

@@ -1,4 +1,5 @@
DOCKER_IMAGE=cubetiq/highcharts-export-server
DOCKER_IMAGE=cubetiq/highcharts-export-server:latest
DOCKER_IMAGE_ARM=cubetiq/highcharts-export-server:arm
build:
@echo 'Starting docker build'
@@ -7,4 +8,7 @@ build:
@echo 'Starting docker push'
docker push ${DOCKER_IMAGE}
@echo 'Starting docker buildx push'
docker buildx build --platform linux/arm64,linux/arm/v7 -f Dockerfile.arm -t ${DOCKER_IMAGE_ARM} --push .
.PHONY:build