added initial config
This commit is contained in:
parent
a662eeb8b5
commit
d1bf490d4d
1
.bash_profile
Normal file
1
.bash_profile
Normal file
@ -0,0 +1 @@
|
||||
source /nvm/nvm.sh
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.idea/
|
17
Dockerfile
Normal file
17
Dockerfile
Normal 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
|
Loading…
Reference in New Issue
Block a user