melpomene/eslint/Dockerfile

12 lines
213 B
Docker
Raw Normal View History

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