Add github action for public to docker hub and updated

This commit is contained in:
2021-03-29 14:22:00 +07:00
parent 9d6bb5bc79
commit 5116a6051f
4 changed files with 40 additions and 2 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
DOCKER_IMAGE=cubetiq/highcharts-export-server
build:
@echo 'Starting docker build'
docker build . -t ${DOCKER_IMAGE}
@echo 'Starting docker push'
docker push ${DOCKER_IMAGE}
.PHONY:build