Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions template/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ compile-frontend: frontend/package.json ## compile latest frontend dependencies

init-frontend-dependencies: ## compile initial frontend dependencies to be built into the docker image
@docker run --rm --user $(shell id -u):$(shell id -g) -w "/app" -v $(shell pwd)/frontend:/app -e npm_config_cache=/tmp/.npm node:lts /bin/bash -c \
"xargs npm install < dependencies-init.txt"
"xargs -n 5 npm install < dependencies-init.txt"
@docker run --rm --user $(shell id -u):$(shell id -g) -w "/app" -v $(shell pwd)/frontend:/app -e npm_config_cache=/tmp/.npm node:lts /bin/bash -c \
"xargs npm install --save-dev < dependencies-dev-init.txt"
"xargs -n 5 npm install --save-dev < dependencies-dev-init.txt"

shell-backend: ## Shell into the running Django container
$(KUBECTL_EXEC_BACKEND)
Expand Down
Loading