You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker build -t $(PREFIX)/$(REPO_NAME).# Build new image and automatically tag it as latest
11
+
docker tag $(PREFIX)/$(REPO_NAME)$(PREFIX)/$(REPO_NAME):$(TAG)# Add the version tag to the latest image
12
+
13
+
push: image
14
+
docker push $(PREFIX)/$(REPO_NAME)# Push image tagged as latest to repository
15
+
docker push $(PREFIX)/$(REPO_NAME):$(TAG)# Push version tagged image to repository (since this image is already pushed it will simply create or update version tag)
0 commit comments