-
Notifications
You must be signed in to change notification settings - Fork 21
/
Makefile
26 lines (21 loc) · 862 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.DEFAULT_GOAL := bootstrap
%:
-@[ -z "$$TERM" ] || tput setaf 1 # red
@>&2 echo warning: calling '`make`' is being deprecated in this repo, you should use '`invoke` (https://pyinvoke.org)' instead.
-@[ -z "$$TERM" ] || tput setaf 9 # default
@# pass goals to '`invoke`'
invoke $(or $(MAKECMDGOALS), $@)
@exit
help:
invoke --list
.PHONY: bootstrap
bootstrap:
pip install digitalmarketplace-developer-tools
@echo done
-@[ -z "$$TERM" ] || tput setaf 2 # green
@>&2 echo dmdevtools has been installed globally, run developer tasks with '`invoke`'
-@[ -z "$$TERM" ] || tput setaf 9 # default
.PHONY: build
build:
docker build -t digitalmarketplace-aws-supplier-frontend-http --build-arg DM_APP_NAME=supplier-frontend -f docker-aws/Dockerfile.http .
docker build -t digitalmarketplace-aws-supplier-frontend-wsgi -f docker-aws/Dockerfile.wsgi .