Updated node and docker build and add script

This commit is contained in:
2021-03-06 21:00:21 +07:00
parent e70cb9ee56
commit 9ee57deaa5
2 changed files with 12 additions and 2 deletions

10
scripts/build.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
TAG=latest
REGISTRY=registry.kh.cubetiqs.com
IMAGE=highcharts-export-server
CONTAINER=${REGISTRY}/${IMAGE}:${TAG}
docker build -t ${CONTAINER} .
docker push ${CONTAINER}