Skip to content

Commit a258ae8

Browse files
committed
Update auto-indexing docker image
Installs the correct `yarn` binary. Previously, it did `apt-get install yarn`, which installs some other `yarn` tool that is not the JavaScript `yarn` tool it was supposed to install.
1 parent 2495c6e commit a258ae8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

auto-indexing/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ RUN apt-get update
33
RUN apt-get install --yes maven npm
44
RUN curl -fLo /coursier https://git.io/coursier-cli
55
RUN chmod +x /coursier
6-
RUN apt-get install --yes yarn
6+
RUN npm install --global yarn
77
RUN /coursier launch --contrib --ttl 0 lsif-java -- --help

0 commit comments

Comments
 (0)