mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
a1a44cb784
Adds a new lint docker image for linting tools and adds an eslint-gecko task that uses it to run eslint over the tree. --HG-- extra : rebase_source : 6e3584ae9ec05ca1c45270f312d96cd026550e17
25 lines
856 B
Docker
25 lines
856 B
Docker
FROM node:4.2
|
|
MAINTAINER Dave Townsend <dtownsend@oxymoronical.com>
|
|
|
|
RUN useradd -d /home/worker -s /bin/bash -m worker
|
|
WORKDIR /home/worker
|
|
|
|
# install necessary npm packages
|
|
RUN npm install -g taskcluster-vcs@2.3.12
|
|
RUN npm install -g eslint@1.10.3
|
|
RUN npm install -g eslint-plugin-html@1.1.0
|
|
RUN npm install -g eslint-plugin-react@3.13.1
|
|
|
|
# Set variable normally configured at login, by the shells parent process, these
|
|
# are taken from GNU su manual
|
|
ENV HOME /home/worker
|
|
ENV SHELL /bin/bash
|
|
ENV USER worker
|
|
ENV LOGNAME worker
|
|
ENV HOSTNAME taskcluster-worker
|
|
ENV LANG en_US.UTF-8
|
|
ENV LC_ALL en_US.UTF-8
|
|
|
|
# Set a default command useful for debugging
|
|
CMD ["/bin/bash", "--login"]
|