ht-docker-node/Dockerfile

18 lines
422 B
Docker
Raw Normal View History

2016-02-24 20:57:17 +01:00
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
2016-02-25 09:01:27 +01:00
ENV BASH_ENV /.bashrc