Skip to content
This repository has been archived by the owner on Jan 25, 2023. It is now read-only.

Install Yarn and Elm in the base build image. #23

Merged
merged 2 commits into from
Oct 12, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,11 @@ USER buildbot
RUN git clone https://github.com/creationix/nvm.git ~/.nvm

RUN /bin/bash -c '. ~/.nvm/nvm.sh && nvm install 4 && nvm use 4 && \
npm install -g sm && npm install -g grunt-cli && npm install -g bower'
npm install -g sm && \
npm install -g grunt-cli && \
npm install -g bower && \
npm install -g elm && \
npm install -g yarn'

USER root

Expand Down