11 lines
213 B
Docker
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"]
|