aboutsummaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-11-03 20:56:39 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2018-11-03 20:56:39 -0700
commitbf17af65a7dfafeb69df62e9b06a90bb2cfd2023 (patch)
treed8bc735e951c5427328a35f795e66c753fb5bf01 /linux
parent23cd1c77a624f1fc4ae4cca717e92311e3eeb62d (diff)
downloadpandoc-bf17af65a7dfafeb69df62e9b06a90bb2cfd2023.tar.gz
Fix bug in linux/Dockerfile.
Diffstat (limited to 'linux')
-rw-r--r--linux/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/Dockerfile b/linux/Dockerfile
index fd4426385..7d90ac757 100644
--- a/linux/Dockerfile
+++ b/linux/Dockerfile
@@ -3,7 +3,7 @@ FROM alpine
RUN apk update
RUN apk add alpine-sdk git ca-certificates ghc gmp-dev zlib-dev bash dpkg fakeroot
# GRAB A RECENT BINARY OF STACK
-RUN curl -L https://github.com/commercialhaskell/stack/releases/download/v1.9.1/stack-1.9.1-linux-x86_64-static.tar.gz | tar xv
+RUN curl -L https://github.com/commercialhaskell/stack/releases/download/v1.9.1/stack-1.9.1-linux-x86_64-static.tar.gz | tar xvz
RUN cp stack-1.9.1-linux-x86_64-static/stack /usr/local/bin/stack
RUN chmod +x /usr/local/bin/stack
ENV PATH="/usr/local/bin:${PATH}"