7 lines
157 B
Makefile
7 lines
157 B
Makefile
all: simd-env
|
|
|
|
simd-env:
|
|
docker build --build-arg UID=$(shell id -u) --build-arg GID=$(shell id -g) --tag cosmossdk/simd-env simd-env
|
|
|
|
.PHONY: all simd-env
|