Skip to content

Commit

Permalink
updated Makefile for privileged
Browse files Browse the repository at this point in the history
  • Loading branch information
DaleBinghamSoteriaSoft committed Apr 22, 2024
1 parent b09917c commit 492b681
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ DOCKERHUB_ACCOUNT ?= cingulara

docker:
docker build -f Dockerfile -t $(NAME)\:$(VERSION) --no-cache=$(NO_CACHE) .
docker build -f Dockerfile.privileged -t $(NAME)\:$(VERSION)-privileged --no-cache=$(NO_CACHE) .

latest:
docker build -f Dockerfile -t $(NAME)\:latest --no-cache=$(NO_CACHE) .
Expand All @@ -20,5 +21,7 @@ version:
dockerhub:
docker tag $(NAME)\:$(VERSION) ${DOCKERHUB_ACCOUNT}\/$(NAME)\:$(VERSION)
docker push ${DOCKERHUB_ACCOUNT}\/$(NAME)\:$(VERSION)
docker tag $(NAME)\:$(VERSION)-privileged ${DOCKERHUB_ACCOUNT}\/$(NAME)\:$(VERSION)-privileged
docker push ${DOCKERHUB_ACCOUNT}\/$(NAME)\:$(VERSION)-privileged

DEFAULT: latest

0 comments on commit 492b681

Please sign in to comment.