Skip to content

Commit

Permalink
Try stripping the parent directory from the archive
Browse files Browse the repository at this point in the history
  • Loading branch information
mpilgrem committed Dec 18, 2022
1 parent 7087d9a commit fa824d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions etc/dockerfiles/arm64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ RUN cd /tmp && \
tar xfv /tmp/llvm.tar --strip-components 1 -C /usr && \
rm /tmp/llvm.tar

RUN curl -L https://downloads.haskell.org/ghcup/unofficial-bindists/stack/2.9.3/stack-2.9.3-linux-aarch64.tar.gz --output /tmp/stack.tar.gz && \
tar xfv /tmp/stack.tar.gz -C /usr/local/bin && \
RUN curl -L https://github.com/commercialhaskell/stack/releases/download/v2.9.3/stack-2.9.3-linux-aarch64.tar.gz --output /tmp/stack.tar.gz && \
tar xfv /tmp/stack.tar.gz -C /usr/local/bin --strip-components 1 && \
rm /tmp/stack.tar.gz

# RUN curl -sSL https://github.com/commercialhaskell/stack/releases/download/v2.7.1/stack-2.7.1-linux-aarch64.bin > /usr/local/bin/stack && \
Expand Down

0 comments on commit fa824d8

Please sign in to comment.