Skip to content
Snippets Groups Projects
Commit 923b1d1e2d12 authored by Philippe Pepiot's avatar Philippe Pepiot
Browse files

[docker] use docker build --pull

parent 8daefd9acb64
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
all: build
build:
docker build -t $(IMAGE) .
docker build --pull -t $(IMAGE) .
push: build
docker push $(IMAGE)
......@@ -21,10 +21,7 @@
dev: build
docker run --rm -it $(DOCKER_ARGS) -v `pwd`:/src $(IMAGE) bash
pull-base:
grep '^FROM ' Dockerfile | awk '{ print $$2 }' | xargs docker pull
deploy: pull-base push
deploy: push
sed "s@hub.extranet.logilab.fr/logilab/fresh@$(IMAGE)@" deploy/deployment.yaml | kubectl -n $(NAMESPACE) apply -f -
@echo "wait at max 3 minutes for deployment to be UP"
kubectl -n $(NAMESPACE) wait --for=condition=available --timeout=180s deployment/fresh deployment/fresh-scheduler
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment