-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
25 lines (20 loc) · 848 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
# Versioned by a simple counter that is not bound to a specific CosmWasm version
# See builders/README.md
#BUILDERS_PREFIX := cosmwasm/go-ext-builder:0013
BUILDERS_PREFIX := line/wasmvm-builder
.PHONY: docker-image-centos7
docker-image-centos7:
docker build --pull . -t $(BUILDERS_PREFIX)-centos7 -f ./Dockerfile.centos7
.PHONY: docker-image-cross
docker-image-cross:
docker build --pull . -t $(BUILDERS_PREFIX)-cross -f ./Dockerfile.cross
.PHONY: docker-image-alpine
docker-image-alpine:
docker build --pull . -t $(BUILDERS_PREFIX)-alpine -f ./Dockerfile.alpine
.PHONY: docker-images
docker-images: docker-image-centos7 docker-image-cross docker-image-alpine
# .PHONY: docker-publish
# docker-publish: docker-images
# docker push $(BUILDERS_PREFIX)-cross
# docker push $(BUILDERS_PREFIX)-centos7
# docker push $(BUILDERS_PREFIX)-alpine