aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2018-09-21 20:23:53 +0000
committerCody Hiar <codyfh@gmail.com>2018-09-21 20:23:53 +0000
commitdfe5f42351467488e3766ac2a8e5fc42fee72234 (patch)
tree89806a21979b377ad2d9c4e52afbdc74d54622ff
parent0554bb4f728f288bbeb831783c8635e48e4dbaa2 (diff)
Updating Dockerfile
-rw-r--r--Dockerfile10
1 files changed, 10 insertions, 0 deletions
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