Skip to content

Commit

Permalink
Fix reqs rules to not load dependent containers
Browse files Browse the repository at this point in the history
  • Loading branch information
willkg committed Dec 7, 2021
1 parent 7052da4 commit 845f569
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ testshell: my.env .docker-build ## | Open a shell in the test environment.

.PHONY: rebuildreqs
rebuildreqs: .env .docker-build ## | Rebuild requirements.txt file after requirements.in changes.
docker-compose run --rm app shell pip-compile --generate-hashes
docker-compose run --rm --no-deps app shell pip-compile --generate-hashes

.PHONY: updatereqs
updatereqs: .env .docker-build ## | Update deps in requirements.txt file.
docker-compose run --rm app shell pip-compile --generate-hashes -U
docker-compose run --rm --no-deps app shell pip-compile --generate-hashes -U

0 comments on commit 845f569

Please sign in to comment.