-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
31 lines (24 loc) · 787 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
27
28
29
30
31
.PHONY: all
all: apigateway authservice database frontend
postservice imageservice userservice
.PHONY: apigateway
apigateway:
docker build -t localhost:5000/thoughts/apigateway src/apigateway
.PHONY: authservice
authservice:
docker build -t localhost:5000thoughts/authservice src/authservice
.PHONY: database
database:
docker build -t localhost:5000thoughts/database src/database
.PHONY: frontend
frontend:
docker build -t localhost:5000thoughts/frontend src/frontend
.PHONY: postservice
postservice:
docker build -t localhost:5000thoughts/postservice src/postservice
.PHONY: imageservice
imageservice:
docker build -t localhost:5000thoughts/imageservice src/imageservice
.PHONY: userservice
userservice:
docker build -t localhost:5000thoughts/userservice src/userservice