This commit is contained in:
2022-10-22 11:01:52 +08:00
commit 200117b921
105 changed files with 26944 additions and 0 deletions

17
osdict_front/Makefile Normal file
View File

@ -0,0 +1,17 @@
WORKDIR = $(shell pwd)
PROJECT_NAME = osdict_front
DOCKER_HUB_ADDR = registry.cn-beijing.aliyuncs.com/cypress-boat
IMAGE_REPOSITORY = ${DOCKER_HUB_ADDR}/${PROJECT_NAME}
TAG ?= latest
IMAGE_REPOSITORY_TAG = ${IMAGE_REPOSITORY}:${TAG}
.PHONY: image publish
image:
docker build --platform=amd64 -t ${IMAGE_REPOSITORY_TAG} .
publish:
@echo "push ${IMAGE_REPOSITORY_TAG}"
docker push ${IMAGE_REPOSITORY_TAG}
all: image publish