Makefile 309 B

123456789101112
  1. .PHONY: all prod test
  2. all: prod test
  3. prod:
  4. @DOCKER_BUILDKIT=1 docker build -f docker/Dockerfile --build-arg BUILDKIT_INLINE_CACHE=1 --target image-prod -t livy:prod .
  5. test:
  6. @DOCKER_BUILDKIT=1 docker build -f docker/Dockerfile --build-arg BUILDKIT_INLINE_CACHE=1 --target image-test -t livy:test .