Skip to content

Commit

Permalink
fixes install node problem
Browse files Browse the repository at this point in the history
  • Loading branch information
nicodeur committed Sep 27, 2017
1 parent c6e77ac commit 5bb1a34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docker/1.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ MAINTAINER nicodeur <[email protected]>

RUN apk update && apk add --update git nodejs nodejs-npm && npm install npm@latest -g && rm -rf /var/cache/apk/*

RUN git clone https://github.com/nicodeur/QualityDashboard.git /opt/qualityReport && echo "8"
RUN git clone https://github.com/nicodeur/QualityDashboard.git /opt/qualityReport && \
cd /opt/qualityReport && git checkout 1.0


RUN cd /opt/qualityReport && chmod 755 installDependencies.sh && ./installDependencies.sh
Expand Down
2 changes: 1 addition & 1 deletion docker/latest/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ MAINTAINER nicodeur <[email protected]>

RUN apk update && apk add --update git nodejs nodejs-npm && npm install npm@latest -g && rm -rf /var/cache/apk/*

RUN git clone https://github.com/nicodeur/QualityDashboard.git /opt/qualityReport && echo "8"
RUN git clone https://github.com/nicodeur/QualityDashboard.git /opt/qualityReport && echo "10"


RUN cd /opt/qualityReport && chmod 755 installDependencies.sh && ./installDependencies.sh
Expand Down

0 comments on commit 5bb1a34

Please sign in to comment.