Skip to content

Commit

Permalink
Fix checksum handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Niklas Riekenbrauck committed Feb 10, 2020
1 parent 02c9350 commit 12c7106
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ RUN apk add --update --no-cache \
curl

# install tflint
RUN curl -L -o /tmp/tflint.zip https://github.com/wata727/tflint/releases/download/v0.14.0/tflint_linux_amd64.zip && unzip /tmp/tflint.zip -d /usr/local/bin
RUN echo "4908d30078ecbd3b732ce5c2caabad77b6b768d46397ae009dd8dab8a1cbf6ac /usr/local/bin/tflint" | sha256sum -c
RUN curl -L -o /tmp/tflint.zip https://github.com/terraform-linters/tflint/releases/download/v0.14.0/tflint_linux_amd64.zip
RUN echo "4908d30078ecbd3b732ce5c2caabad77b6b768d46397ae009dd8dab8a1cbf6ac /tmp/tflint.zip" | sha256sum -c
RUN unzip /tmp/tflint.zip -d /usr/local/bin

# install git-crypt
RUN curl -L -o /tmp/git-crypt.tar.gz https://www.agwa.name/projects/git-crypt/downloads/git-crypt-0.6.0.tar.gz
RUN echo "6d30fcd99442d50f4b3c8d554067ff1d980cdf9f3120ee774131172dba98fd6f /tmp/git-crypt.tar.gz" | sha256sum -c
RUN tar -zxf /tmp/git-crypt.tar.gz
RUN cd git-crypt-0.6.0 && make && make install PREFIX=/usr/local

0 comments on commit 12c7106

Please sign in to comment.