aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to '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