- .PHONY: all prod test
- all: prod test
- prod:
- @DOCKER_BUILDKIT=1 docker build -f docker/Dockerfile --build-arg BUILDKIT_INLINE_CACHE=1 --target image-prod -t livy:prod .
- test:
- @DOCKER_BUILDKIT=1 docker build -f docker/Dockerfile --build-arg BUILDKIT_INLINE_CACHE=1 --target image-test -t livy:test .
|