Skip to content
This repository has been archived by the owner on Jun 22, 2020. It is now read-only.

Commit

Permalink
Merge pull request #26 from xueqingxiao/master
Browse files Browse the repository at this point in the history
fix: Cannot run program 'node': error=2, No such file or directory
  • Loading branch information
elboletaire authored Jun 4, 2018
2 parents 6a11365 + c9008c2 commit 6ca1e69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM openjdk:8-jdk-alpine
## Based on this example http://stackoverflow.com/a/40612088/865222
ENV SONAR_SCANNER_VERSION 3.0.3.778

RUN apk add --no-cache wget && \
RUN apk add --no-cache wget nodejs && \
wget https://sonarsource.bintray.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONAR_SCANNER_VERSION}.zip && \
unzip sonar-scanner-cli-${SONAR_SCANNER_VERSION} && \
cd /usr/bin && ln -s /sonar-scanner-${SONAR_SCANNER_VERSION}/bin/sonar-scanner sonar-scanner && \
Expand Down

0 comments on commit 6ca1e69

Please sign in to comment.