ht-docker-node/Dockerfile

36 lines
1019 B
Docker
Raw Normal View History

2016-02-24 19:57:17 +00:00
FROM debian
2016-02-27 23:15:12 +00:00
# Replace shell with bash so we can source files
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
# Set debconf to run non-interactively
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
2016-02-24 19:57:17 +00:00
2016-02-27 23:15:12 +00:00
# Install base dependencies
RUN apt-get update && apt-get install -y -q --no-install-recommends \
apt-transport-https \
build-essential \
ca-certificates \
curl \
git \
libssl-dev \
python \
rsync \
software-properties-common \
wget \
&& rm -rf /var/lib/apt/lists/*
2016-02-24 19:57:17 +00:00
2016-02-27 23:15:12 +00:00
ENV NVM_DIR /usr/local/nvm
ENV NODE_VERSION 4.3.1
2016-02-25 08:01:27 +00:00
2016-02-27 23:15:12 +00:00
# Install nvm with node and npm
RUN curl https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash \
&& source $NVM_DIR/nvm.sh \
&& nvm install $NODE_VERSION \
&& nvm alias default $NODE_VERSION \
&& nvm use default
2016-02-25 08:14:50 +00:00
2016-02-27 23:15:12 +00:00
ENV NODE_PATH $NVM_DIR/v$NODE_VERSION/lib/node_modules
ENV PATH $NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH
RUN node -v
RUN npm -v