aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.shell
diff options
context:
space:
mode:
authorCody Hiar <cody.hiar@investopedia.com>2016-08-28 16:53:25 -0600
committerCody Hiar <cody.hiar@investopedia.com>2016-08-28 16:53:25 -0600
commit7641b3272fabd1112d30b5b1c07c32f6f9e51050 (patch)
tree696afa880ef927cf0123e69e96bff75727fe30d7 /Dockerfile.shell
parent8f1d9fa477434368a7f41fb2896bf1be6b048c8a (diff)
Break neovim into separate images. Makes it quicker to compile new
changes
Diffstat (limited to 'Dockerfile.shell')
-rw-r--r--Dockerfile.shell16
1 files changed, 16 insertions, 0 deletions
diff --git a/Dockerfile.shell b/Dockerfile.shell
new file mode 100644
index 0000000..3e34605
--- /dev/null
+++ b/Dockerfile.shell
@@ -0,0 +1,16 @@
+FROM thornycrackers/neovim:javascript
+MAINTAINER Cody Hiar <codyfh@gmail.com>
+
+# Install packages
+RUN apt-get update && apt-get install -y \
+ cabal-install
+
+# Install Shellcheck
+RUN cabal update
+RUN cabal install shellcheck
+
+# Include the cabal bins
+ENV PATH "$PATH:/root/.cabal/bin"
+
+
+