added initial config

This commit is contained in:
Philipp Kunz 2016-02-24 20:57:17 +01:00
parent a662eeb8b5
commit d1bf490d4d
4 changed files with 20 additions and 0 deletions

1
.bash_profile Normal file
View File

@ -0,0 +1 @@
source /nvm/nvm.sh

1
.bashrc Normal file
View File

@ -0,0 +1 @@
source /.bash_profile

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.idea/

17
Dockerfile Normal file
View File

@ -0,0 +1,17 @@
FROM debian
# Install prerequirements or NVM
RUN apt-get update \
&& apt-get install -y \
curl \
build-essential \
python
# Install NVM with node
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.30.1/install.sh | NVM_DIR="/nvm" bash \
&& bash -c "source /nvm/nvm.sh \
&& nvm install 4.3.1 \
&& nvm alias default v4.3.1"
ADD .bashrc /.bashrc
ADD .bash_profile /.bash_profile