Makefile 158 B

123456789
  1. NAME = example/single-process
  2. .PHONY: build build-nocache
  3. build:
  4. docker build -t $(NAME) --rm .
  5. build-nocache:
  6. docker build -t $(NAME) --no-cache --rm .