We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f0850d commit 9f5908aCopy full SHA for 9f5908a
Makefile
@@ -27,7 +27,14 @@ clobber: clean
27
docker image ls $(REPO) --quiet | uniq | xargs docker image rm --force
28
29
push: all
30
- docker image push --all-tags $(REPO)
+ docker image push $(REPO):alpine
31
+ docker image push $(REPO):slim
32
+ docker image push $(REPO):jupyter
33
+ docker image push $(REPO):latest
34
+ docker image push $(REPO):$(PANDAS_VERSION)-alpine
35
+ docker image push $(REPO):$(PANDAS_VERSION)-slim
36
+ docker image push $(REPO):$(PANDAS_VERSION)-jupyter
37
+ docker image push $(REPO):$(PANDAS_VERSION)
38
39
alpine slim jupyter:
40
docker image tag $(REPO):$* $(REPO):$(PANDAS_VERSION)-$*
0 commit comments