mirror of
https://github.com/cnrancher/kube-explorer.git
synced 2025-05-06 15:07:10 +00:00
13 lines
186 B
Bash
Executable File
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
|