mirror of
https://github.com/cnrancher/kube-explorer.git
synced 2025-05-02 13:13:29 +00:00
10 lines
173 B
Bash
Executable File
10 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source $(dirname $0)/version
|
|
cd "$(dirname $0)/.."
|
|
|
|
cp dist/* package/
|
|
docker build -f package/Dockerfile -t "cnrancher/kube-explorer:$VERSION" package
|
|
|