updated nodejs lts version and improved bash use in Dockerfile
This commit is contained in:
parent
b8d3094ad7
commit
b4e13ceffe
15
Dockerfile
15
Dockerfile
@ -1,7 +1,4 @@
|
||||
FROM debian
|
||||
|
||||
# Replace shell with bash so we can source files
|
||||
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
|
||||
FROM ubuntu
|
||||
|
||||
# Set debconf to run non-interactively
|
||||
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
|
||||
@ -21,16 +18,16 @@ RUN apt-get update && apt-get install -y -q --no-install-recommends \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ENV NVM_DIR /usr/local/nvm
|
||||
ENV NODE_VERSION 4.3.1
|
||||
ENV NODE_VERSION 4.4.3
|
||||
|
||||
# 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 \
|
||||
&& bash -c "source $NVM_DIR/nvm.sh \
|
||||
&& nvm install $NODE_VERSION \
|
||||
&& nvm alias default $NODE_VERSION \
|
||||
&& nvm use default
|
||||
&& nvm use default \
|
||||
&& npm install -g npmg"
|
||||
|
||||
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
|
||||
RUN node -v && npm -v
|
Loading…
Reference in New Issue
Block a user