mirror of
https://github.com/cnrancher/kube-explorer.git
synced 2026-01-16 06:55:58 +00:00
11 lines
151 B
Bash
Executable File
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
|