1
0
mirror of https://github.com/cnrancher/kube-explorer.git synced 2025-05-06 15:07:10 +00:00
kube-explorer/scripts/package
2021-04-17 11:44:46 +08:00

13 lines
186 B
Bash
Executable File

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