Skip to content

Instantly share code, notes, and snippets.

View dreimert's full-sized avatar

Damien Reimert dreimert

  • INSA Lyon
  • Lyon
View GitHub Profile
@dreimert
dreimert / gist:46de415778cc6332fe5e0b155ad9897b
Created November 30, 2016 12:47
npm install -g sans le root
1) echo prefix=${HOME}/.local >> ~/.npmrc
2) npm install -g cordova
3) echo 'export PATH=$HOME/.local/bin:$PATH' >> ~/.bashrc
4) source ~/.bashrc
@dreimert
dreimert / Dockerfile
Created November 4, 2016 08:07
Compile Bitcoin from source : Dockerfile or sh
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