diff options
author | Cody Hiar <codyfh@gmail.com> | 2018-09-21 20:23:53 +0000 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2018-09-21 20:23:53 +0000 |
commit | dfe5f42351467488e3766ac2a8e5fc42fee72234 (patch) | |
tree | 89806a21979b377ad2d9c4e52afbdc74d54622ff | |
parent | 0554bb4f728f288bbeb831783c8635e48e4dbaa2 (diff) |
Updating Dockerfile
-rw-r--r-- | Dockerfile | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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 |