From dfe5f42351467488e3766ac2a8e5fc42fee72234 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Fri, 21 Sep 2018 20:23:53 +0000 Subject: Updating Dockerfile --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Dockerfile b/Dockerfile index 14ac63f..2450d2d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,6 +27,7 @@ RUN apt-get update && apt-get install -y \ ranger \ ack-grep \ sqlite3 \ + unzip \ # For python crypto libraries libssl-dev \ libffi-dev \ @@ -45,6 +46,15 @@ RUN add-apt-repository ppa:neovim-ppa/stable RUN apt-get update && apt-get install -y \ neovim +# Install Ledger +RUN add-apt-repository ppa:mbudde/ledger +RUN apt-get update && apt-get install -y \ + ledger + +# Install Terraform for linting +RUN wget https://releases.hashicorp.com/terraform/0.11.8/terraform_0.11.8_linux_amd64.zip && \ + unzip terraform_0.11.8_linux_amd64.zip && \ + mv terraform /usr/bin ######################################## # Python -- cgit v1.2.3