mirror of
https://github.com/harvester/vm-import-controller.git
synced 2025-06-03 01:44:51 +00:00
14 lines
229 B
Bash
Executable File
14 lines
229 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source $(dirname $0)/version
|
|
cd $(dirname $0)/..
|
|
|
|
IMAGE=${REPO}/harvester-vm-import-controller:${TAG}
|
|
DOCKERFILE=package/Dockerfile
|
|
|
|
buildx build --load \
|
|
-f ${DOCKERFILE} -t ${IMAGE} .
|
|
|
|
echo Built ${IMAGE}
|