mirror of
https://github.com/luzifer-docker/eslint.git
synced 2024-11-09 15:10:01 +00:00
Upgrade node, fix broken chaining
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
ea4d9294fa
commit
8778a7b7d6
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
FROM node:9-alpine
|
FROM node:10-alpine
|
||||||
|
|
||||||
ENV ESLINT_VERSION=5.16.0
|
ENV ESLINT_VERSION=5.16.0
|
||||||
|
|
||||||
|
@ -12,10 +12,10 @@ RUN set -ex \
|
||||||
eslint-plugin-promise@latest \
|
eslint-plugin-promise@latest \
|
||||||
eslint-plugin-standard@latest \
|
eslint-plugin-standard@latest \
|
||||||
eslint-plugin-vue@latest \
|
eslint-plugin-vue@latest \
|
||||||
&& rm -rf /usr/share/man /tmp/* \
|
&& ( rm -rf /usr/share/man /tmp/* \
|
||||||
/root/.npm /root/.node-gyp \
|
/root/.npm /root/.node-gyp \
|
||||||
/usr/lib/node_modules/npm/man \
|
/usr/lib/node_modules/npm/man \
|
||||||
/usr/lib/node_modules/npm/doc \
|
/usr/lib/node_modules/npm/doc \
|
||||||
/usr/lib/node_modules/npm/html || true
|
/usr/lib/node_modules/npm/html || true )
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/local/bin/eslint"]
|
ENTRYPOINT ["/usr/local/bin/eslint"]
|
||||||
|
|
Loading…
Reference in a new issue