diff options
author | w0rp <devw0rp@gmail.com> | 2016-10-13 23:53:17 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2016-10-13 23:53:17 +0100 |
commit | 29271f3477d59d6db9cc3013abd5237d2f76ea2a (patch) | |
tree | 725e93d2eac0245ad36f06c2098b4ed8311af24d /Dockerfile | |
parent | f2dba0f487734255c10fc290a6834a9e677cbdd6 (diff) | |
download | ale-29271f3477d59d6db9cc3013abd5237d2f76ea2a.zip |
Add eslint to the Dockerfile.
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -7,11 +7,14 @@ ENV PACKAGES="\ git \ python=2.7.12-r0 \ py-pip=8.1.2-r0 \ + nodejs \ " RUN apk --update add $PACKAGES && \ rm -rf /var/cache/apk/* /tmp/* /var/tmp/* RUN pip install vim-vint==0.3.9 +RUN npm install -g eslint@3.7.1 + RUN git clone https://github.com/junegunn/vader.vim vader && \ cd vader && git checkout c6243dd81c98350df4dec608fa972df98fa2a3af |