mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-03-01 15:00:40 +00:00
13 lines
221 B
Makefile
13 lines
221 B
Makefile
|
DOCKER_IMAGE := node:20-alpine
|
||
|
DOCKER_RUN := docker run --rm -v "$(shell pwd)":/usr/src/myapp -w /usr/src/myapp $(DOCKER_IMAGE)
|
||
|
|
||
|
all: perf
|
||
|
|
||
|
perf:
|
||
|
$(DOCKER_RUN) npm ci
|
||
|
|
||
|
clean:
|
||
|
rm -rf node_modules
|
||
|
|
||
|
.PHONY: all clean perf
|