Utilisez l'image locale avec 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