PandaWiki/web/app/Makefile

21 lines
366 B
Makefile
Raw Permalink Normal View History

2025-07-18 11:58:20 +08:00
PLATFORM=linux/amd64
TAG=main
REGISTRY=panda-wiki-app
# 构建前端代码
build:
pnpm run build
# 构建并加载到本地Docker
image: build
docker buildx build \
-f Dockerfile \
--platform ${PLATFORM} \
--tag ${REGISTRY}/frontend:${TAG} \
--load \
.
save: image
2025-09-05 17:28:20 +08:00
docker save -o /tmp/panda-wiki-app_frontend.tar panda-wiki-app/frontend:main
2025-07-18 11:58:20 +08:00