2023-06-04 16:42:49 +02:00
|
|
|
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
|
|
|
|
|
2023-06-04 20:57:51 +02:00
|
|
|
WORKDIR melpomene
|
2023-06-04 16:42:49 +02:00
|
|
|
|
2023-06-04 20:57:51 +02:00
|
|
|
CMD ["eslint", "--no-eslintrc", "-c", "eslint/eslintrc.json", "-f", "html", "-o", "eslint_report.html", "melpomene.js"]
|