Files
kube-explorer/scripts/package
Yuxing Deng 4dc1acb1f2 feat(ci): Improve drone pipeline configuration
- Separate push and tag pipeline
- Use buildx to build and push multi-arch image
2023-11-15 16:09:58 +08:00

11 lines
151 B
Bash
Executable File

#!/bin/bash
set -e
source $(dirname $0)/version
pushd $DAPPER_SOURCE
docker build -f package/Dockerfile -t cnrancher/kube-explorer:$VERSION .
popd