Skip to content

Commit

Permalink
fix for GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
amancevice committed Dec 26, 2020
1 parent 3f0850d commit 9f5908a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,14 @@ clobber: clean
docker image ls $(REPO) --quiet | uniq | xargs docker image rm --force

push: all
docker image push --all-tags $(REPO)
docker image push $(REPO):alpine
docker image push $(REPO):slim
docker image push $(REPO):jupyter
docker image push $(REPO):latest
docker image push $(REPO):$(PANDAS_VERSION)-alpine
docker image push $(REPO):$(PANDAS_VERSION)-slim
docker image push $(REPO):$(PANDAS_VERSION)-jupyter
docker image push $(REPO):$(PANDAS_VERSION)

alpine slim jupyter:
docker image tag $(REPO):$* $(REPO):$(PANDAS_VERSION)-$*
Expand Down

0 comments on commit 9f5908a

Please sign in to comment.