From 5d9c74cc0c337b5215f01d411d8facb87995c5ae Mon Sep 17 00:00:00 2001 From: Sam Tay Date: Wed, 21 Jun 2017 11:19:16 -0400 Subject: [PATCH] Update dex build to use binary from arch instead of build from source --- dex-images/tetris/Dockerfile | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/dex-images/tetris/Dockerfile b/dex-images/tetris/Dockerfile index 391d9c0..69f7346 100644 --- a/dex-images/tetris/Dockerfile +++ b/dex-images/tetris/Dockerfile @@ -1,25 +1,21 @@ -FROM haskell:8 +FROM base/archlinux -ENV DEXBUILD_DIR="/build" +ENV DEXBUILD_DIR="/bin" RUN mkdir -p "${DEXBUILD_DIR}" WORKDIR ${DEXBUILD_DIR} RUN ( \ - git clone "https://github.com/samtay/tetris.git" && \ - cd tetris && \ - git checkout tags/0.1.0 && \ - rm -rf .git && \ - mkdir bin && \ - stack install --local-bin-path bin && \ + curl -L https://github.com/samtay/tetris/releases/download/0.1.0/tetris-`uname -s`-`uname -m` -o tetris && \ + chmod +x tetris && \ true ) # # container runtime configuration # -ENTRYPOINT ["/build/tetris/bin/tetris"] +ENTRYPOINT ["/bin/tetris"] # # v1 dex-api