diff options
author | Rob Austein <sra@hactrn.net> | 2019-02-13 20:57:24 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2019-02-13 20:57:24 +0000 |
commit | 0ca9d2581042b11ff2fb04e9095f033a6edf74a2 (patch) | |
tree | 63825da1764954e3bb070ab9c969800aaba8e157 /Makefile | |
parent | 48e70b200759f51b8470f67146d35688c18ead3b (diff) |
Clean up image names. Integrate license management script.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -5,25 +5,25 @@ build: stage0.stamp stage1.stamp stage2.stamp # stage3.stamp debug: stage2.stamp docker container prune -f mkdir -p framebuf - docker run -it --mount type=bind,source=$(abspath framebuf),target=/framebuf xilinx:installed /xilinx-unpack/installer + docker run -it --mount type=bind,source=$(abspath framebuf),target=/framebuf cryptech-builder:stage2 /xilinx-unpack/builder stage0.stamp: mkdir -p stage0/jessie_chroot cd stage0; sudo /usr/sbin/debootstrap --foreign jessie jessie_chroot - sudo tar -C stage0/jessie_chroot -c . | docker import - xilinx:debootstrap + sudo tar -C stage0/jessie_chroot -c . | docker import - cryptech-builder:stage0 sudo rm -rf stage0/jessie_chroot touch $@ stage1.stamp: stage0.stamp stage1/Dockerfile - cd stage1; docker build -t xilinx:loaded . + cd stage1; docker build -t cryptech-builder:stage1 . touch $@ stage2.stamp: stage1.stamp stage2/Dockerfile - cd stage2; docker build -t xilinx:installed . + cd stage2; docker build -t cryptech-builder:stage2 . touch $@ stage3.stamp: stage2.stamp stage3/Dockerfile - cd stage3; docker build -t cryptech-alpha-builder . + cd stage3; docker build -t cryptech-builder:stage3 . touch $@ clean: |