diff options
author | Cody Hiar <cody.hiar@investopedia.com> | 2016-09-02 14:34:31 -0600 |
---|---|---|
committer | Cody Hiar <cody.hiar@investopedia.com> | 2016-09-02 17:12:04 -0600 |
commit | e91b54d9ec6c1287be2519904a9f39beb3485846 (patch) | |
tree | 56960c59f344b358b0e9b26d5ad76c67b0f189ea /Dockerfile.javascript | |
parent | 7cfc1e88685fa4973d3e0020312c00615ef191a9 (diff) |
Moved neovim to alpine linux to save time on compiling
Diffstat (limited to 'Dockerfile.javascript')
-rw-r--r-- | Dockerfile.javascript | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Dockerfile.javascript b/Dockerfile.javascript deleted file mode 100644 index 592f58a..0000000 --- a/Dockerfile.javascript +++ /dev/null @@ -1,15 +0,0 @@ -FROM thornycrackers/neovim:php -MAINTAINER Cody Hiar <codyfh@gmail.com> - -# Install nodejs 6 -RUN curl -sL https://deb.nodesource.com/setup_6.x | bash - -RUN apt-get install -y \ - nodejs - -# Install JS linting modules -# The reason for the version specifications is an 'Unmet peerDependancy error' -# https://github.com/airbnb/javascript/issues/952 -RUN npm install -g eslint@\^2.10.2 eslint-config-airbnb eslint-plugin-import eslint-plugin-react eslint-plugin-jsx-a11y@\^1.2.2 - -# Install the eslintrc.json -ADD eslintrc.json /root/.eslintrc.json |