12 lines
298 B
Docker
12 lines
298 B
Docker
FROM debian:latest
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends npm
|
|
|
|
RUN npm install eslint --global
|
|
|
|
COPY eslintrc.json /eslintrc.json
|
|
|
|
WORKDIR melpomene
|
|
|
|
CMD ["eslint", "--no-eslintrc", "-c", "eslint/eslintrc.json", "-f", "html", "-o", "eslint_report.html", "melpomene.js"]
|