35 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM ubuntu:latest
 | |
| 
 | |
| # Set debconf to run non-interactively
 | |
| RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
 | |
| 
 | |
| # Install base dependencies
 | |
| RUN apt-get update \
 | |
|     && apt-get upgrade --no-install-recommends -y \
 | |
|     && apt-get install -y -q --no-install-recommends \
 | |
|         software-properties-common \
 | |
|         apt-transport-https \
 | |
|         build-essential \
 | |
|         ca-certificates \
 | |
|         curl \
 | |
|         git \
 | |
|         python \
 | |
|         rsync \
 | |
|     && apt-get clean \
 | |
|     && rm -r /var/lib/apt/lists/*
 | |
| 
 | |
| ENV NVM_DIR /usr/local/nvm
 | |
| ENV NODE_VERSION 4.4.1
 | |
| 
 | |
| # Install nvm with node and npm
 | |
| RUN curl https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash \
 | |
|     && bash -c "source $NVM_DIR/nvm.sh \
 | |
|     && nvm install $NODE_VERSION \
 | |
|     && nvm alias default $NODE_VERSION \
 | |
|     && nvm use default \
 | |
|     && npm install -g npm \
 | |
|     && npm install -g npmci"
 | |
| 
 | |
| 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 && npm -v |