Skip to content

Commit

Permalink
removed quotes as unneeded
Browse files Browse the repository at this point in the history
  • Loading branch information
dmalan committed Jan 29, 2024
1 parent d5c9e4a commit 908c61a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ endif
default: run

build:
docker build --build-arg TAG="$(TAG)" --build-arg VCS_REF="$(shell git rev-parse HEAD)" --tag cs50/cli:"$(TAG)" .
docker build --build-arg TAG=$(TAG) --build-arg VCS_REF=$(shell git rev-parse HEAD) --tag cs50/cli:$(TAG) .

depends:
pip3 install docker-squash

rebuild:
docker build --build-arg TAG="$(TAG)" --build-arg VCS_REF="$(shell git rev-parse HEAD)" --no-cache --tag cs50/cli:"$(TAG)" .
docker build --build-arg TAG=$(TAG) --build-arg VCS_REF=$(shell git rev-parse HEAD) --no-cache --tag cs50/cli:$(TAG) .

run:
docker run --env LANG="$(LANG)" --interactive --publish-all --rm --security-opt seccomp=unconfined --tty --volume "$(PWD)":/home/ubuntu --volume /var/run/docker.sock:/var/run/docker-host.sock cs50/cli bash --login || true
docker run --env LANG=$(LANG) --interactive --publish-all --rm --security-opt seccomp=unconfined --tty --volume $(PWD):/home/ubuntu --volume /var/run/docker.sock:/var/run/docker-host.sock cs50/cli bash --login || true

squash: depends
docker-squash --tag cs50/cli:"$(TAG)" cs50/cli:"$(TAG)"
docker-squash --tag cs50/cli:$(TAG) cs50/cli:$(TAG)

0 comments on commit 908c61a

Please sign in to comment.