diff options
author | 2018-06-13 12:53:21 +0100 | |
---|---|---|
committer | 2018-06-13 12:53:21 +0100 | |
commit | afff6a5a1b25729f6be3f3b565d61ff3e56d9c36 (patch) | |
tree | bbcdb7c0ae54a8d3f14f4df77bf98eda2bf37ca8 /docker | |
parent | Update GitLab URL (diff) |
Add JavaScript linting
Diffstat (limited to 'docker')
-rw-r--r-- | docker/ci.Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docker/ci.Dockerfile b/docker/ci.Dockerfile index 69a7e5ba..3771e52b 100644 --- a/docker/ci.Dockerfile +++ b/docker/ci.Dockerfile @@ -13,7 +13,9 @@ RUN apk add --update tini \ ruby-rdoc \ ruby-irb \ docker \ - curl + curl \ + nodejs \ + nodejs-npm ENV PIPENV_VENV_IN_PROJECT=1 ENV PIPENV_IGNORE_VIRTUALENVS=1 @@ -22,3 +24,4 @@ ENV PIPENV_HIDE_EMOJIS=1 RUN pip install pipenv RUN gem install scss_lint +RUN npm install -g eslint --save-dev |