Skip to content

Commit f22865c

Browse files
committed
Fix tagging flags
1 parent db5f8d8 commit f22865c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ docker_multi_platform: package_linux_amd64 package_linux_arm64
7777
docker buildx build --push --platform=linux/amd64,linux/arm64 --target=alpine --tag $(REGISTRY)/alpine:$(VERSION) .
7878

7979
docker_tag_latest:
80-
docker buildx imagetools create --tag $(REGISTRY)/python:$(VERSION) $(REGISTRY)/python:latest
81-
docker buildx imagetools create --tag $(REGISTRY)/python-3-13:$(VERSION) $(REGISTRY)/python-3-13:latest
82-
docker buildx imagetools create --tag $(REGISTRY)/python-3-13:$(VERSION) $(REGISTRY)/python-3-12:latest
83-
docker buildx imagetools create --tag $(REGISTRY)/alpine:$(VERSION) $(REGISTRY)/alpine:latest
80+
docker buildx imagetools create $(REGISTRY)/python:$(VERSION) --tag $(REGISTRY)/python:latest
81+
docker buildx imagetools create $(REGISTRY)/python-3-13:$(VERSION) --tag $(REGISTRY)/python-3-13:latest
82+
docker buildx imagetools create $(REGISTRY)/python-3-13:$(VERSION) --tag $(REGISTRY)/python-3-12:latest
83+
docker buildx imagetools create $(REGISTRY)/alpine:$(VERSION) --tag $(REGISTRY)/alpine:latest

0 commit comments

Comments
 (0)