Makefile 315 B

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