diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-05-29 14:50:48 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-05-29 14:50:48 +0200 |
| commit | f0f661db2b4edad3aa22df32a24176407125d70a (patch) | |
| tree | 126ed0fc3ad66c38bd4210147a692782c9102287 /src/ci | |
| parent | 9e5dd511669a0ee091a1964e7939c40788211c28 (diff) | |
| download | rust-f0f661db2b4edad3aa22df32a24176407125d70a.tar.gz rust-f0f661db2b4edad3aa22df32a24176407125d70a.zip | |
Install eslint in host-x86_64 Dockerfile
Diffstat (limited to 'src/ci')
| -rw-r--r-- | src/ci/docker/host-x86_64/mingw-check-tidy/Dockerfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ci/docker/host-x86_64/mingw-check-tidy/Dockerfile b/src/ci/docker/host-x86_64/mingw-check-tidy/Dockerfile index 9ca8cc740a5..2ec8eb62c7a 100644 --- a/src/ci/docker/host-x86_64/mingw-check-tidy/Dockerfile +++ b/src/ci/docker/host-x86_64/mingw-check-tidy/Dockerfile @@ -24,6 +24,13 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ mingw-w64 \ && rm -rf /var/lib/apt/lists/* +COPY scripts/nodejs.sh /scripts/ +RUN sh /scripts/nodejs.sh /node +ENV PATH="/node/bin:${PATH}" + +# Install eslint +RUN npm install eslint@8.6.0 + COPY scripts/sccache.sh /scripts/ RUN sh /scripts/sccache.sh |
