diff options
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | stage2/Dockerfile | 1 |
2 files changed, 4 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 $@ diff --git a/stage2/Dockerfile b/stage2/Dockerfile index ae2b272..7b69f88 100644 --- a/stage2/Dockerfile +++ b/stage2/Dockerfile @@ -4,6 +4,7 @@ RUN ln -sf /bin/bash /bin/sh RUN apt-get update && apt-get install -y \ libglib2.0-0 \ + libxrandr2 \ python-xvfbwrapper \ ratpoison |