-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmakefile
More file actions
28 lines (19 loc) · 1.01 KB
/
makefile
File metadata and controls
28 lines (19 loc) · 1.01 KB
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
all: fs6-payload fs6-base fs6-aws
fs6-payload: docker/dockerfile--fs6-payload
docker build --no-cache -f ./docker/dockerfile--fs6-payload -t corticometrics/fs6-payload .
fs6-base: docker/dockerfile--fs6-base
docker build --no-cache -f ./docker/dockerfile--fs6-base -t corticometrics/fs6-base .
fs6-aws: fs6-base docker/dockerfile--fs6-aws
docker build --no-cache -f ./docker/dockerfile--fs6-aws -t corticometrics/fs6-aws .
fs7: fs7-payload fs7-base fs7-aws
fs7-payload: docker/dockerfile--fs7-payload
docker build --no-cache -f ./docker/dockerfile--fs7-payload -t corticometrics/fs7-payload .
fs7-base: docker/dockerfile--fs7-base
docker build --no-cache -f ./docker/dockerfile--fs7-base -t corticometrics/fs7-base .
fs7-aws: fs7-base docker/dockerfile--fs7-aws
docker build --no-cache -f ./docker/dockerfile--fs7-aws -t corticometrics/fs7-aws .
PUSH_VERSION ?= fs7
push:
docker push corticometrics/${PUSH_VERSION}-payload
docker push corticometrics/${PUSH_VERSION}-base
docker push corticometrics/${PUSH_VERSION}-aws