Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Commit

Permalink
Merge pull request #110 in CWMP/cwmp-xml-tools from wlupton/feature/D…
Browse files Browse the repository at this point in the history
…MR-142-docker-tag-selection to develop

* commit '2fe37b05da23c6c60588df2865eff7bf616d0457':
  DMR-142: Add missing 'docker image build' second arguments
  • Loading branch information
wlupton committed Mar 24, 2020
2 parents 7452627 + 2fe37b0 commit fa303af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Report_Tool/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ docker-variables:

docker-build:
docker image build --tag=$(DOCKER-IMAGE) .
if [ -n "$(DOCKER-TAG-RELEASE)" ]; then docker image build --tag=$(DOCKER-IMAGE-RELEASE); fi
if [ -n "$(DOCKER-TAG-LATEST)" ]; then docker image build --tag=$(DOCKER-IMAGE-LATEST); fi
if [ -n "$(DOCKER-TAG-RELEASE)" ]; then docker image build --tag=$(DOCKER-IMAGE-RELEASE) .; fi
if [ -n "$(DOCKER-TAG-LATEST)" ]; then docker image build --tag=$(DOCKER-IMAGE-LATEST) .; fi

docker-run:
docker container run -it --name $(DOCKER-NAME) --rm $(DOCKER-IMAGE) bash
Expand Down

0 comments on commit fa303af

Please sign in to comment.