Gunakan gambar lokal dengan minikube

#reuse the Docker daemon from Minikube
eval $(minikube docker-env)

#Build the image with the Docker daemon of Minikube
docker build -t my-image .

#my-image ready to use on Minikube cluster
Glorious Goat