melpomene/eslint/Dockerfile
2023-06-04 20:16:55 +02:00

11 lines
213 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
ENTRYPOINT ["eslint", "--no-eslintrc"]
CMD ["--help"]