This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) echo prefix=${HOME}/.local >> ~/.npmrc | |
2) npm install -g cordova | |
3) echo 'export PATH=$HOME/.local/bin:$PATH' >> ~/.bashrc | |
4) source ~/.bashrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:jessie | |
MAINTAINER Damien Reimert<damien@reimert.fr> | |
RUN apt-get -y update | |
RUN apt-get install -y git | |
WORKDIR /root/ | |
RUN git clone https://github.com/bitcoin/bitcoin |