diff options
author | Rob Austein <sra@hactrn.net> | 2019-02-11 16:11:50 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2019-02-11 16:11:50 +0000 |
commit | c2b870dce68ea9a0cc207cd7e7f6bbcffe40fcb2 (patch) | |
tree | 8ce18f0d5145f12da1e83f930b1431a41a6fa40d /Makefile | |
parent | e556e6643e5d2300a38e4373bde45e83178becaf (diff) |
Missing library.
Pretty sure these changes are correct, but Xvfb is refusing to start
under `docker build`. Worked under `docker run`. Investigate when
next I have time to spend on this hack.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -14,15 +14,15 @@ stage0.stamp: sudo rm -rf stage0/jessie_chroot touch $@ -stage1.stamp: stage0.stamp +stage1.stamp: stage0.stamp stage1/Dockerfile cd stage1; docker build -t xilinx:loaded . touch $@ -stage2.stamp: stage1.stamp +stage2.stamp: stage1.stamp stage2/Dockerfile cd stage2; docker build -t xilinx:installed . touch $@ -stage3.stamp: stage2.stamp +stage3.stamp: stage2.stamp stage3/Dockerfile cd stage3; docker build -t cryptech-alpha-builder . touch $@ |