update gitlab ci
This commit is contained in:
15
Dockerfile
15
Dockerfile
@ -1,14 +1,11 @@
|
||||
FROM ubuntu:latest
|
||||
|
||||
# Those need to be updated when new node version are released
|
||||
ENV NODE_VERSION_LTS 4.4.5
|
||||
ENV NODE_VERSION_STABLE 6.2.1
|
||||
# important environment variables
|
||||
ENV NODE_VERSION_LTS="4.4.5" NODE_VERSION_STABLE="6.2.1" NVM_DIR="/usr/local/nvm"
|
||||
|
||||
# Set debconf to run non-interactively
|
||||
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
|
||||
|
||||
# Install base dependencies
|
||||
RUN apt-get update \
|
||||
# Set debconf to run non-interactively and install packages
|
||||
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections \
|
||||
&& apt-get update \
|
||||
&& apt-get upgrade --no-install-recommends -y \
|
||||
&& apt-get install -y -q --no-install-recommends \
|
||||
software-properties-common \
|
||||
@ -22,8 +19,6 @@ RUN apt-get update \
|
||||
&& apt-get clean \
|
||||
&& rm -r /var/lib/apt/lists/*
|
||||
|
||||
ENV NVM_DIR /usr/local/nvm
|
||||
|
||||
# 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 \
|
||||
|
Reference in New Issue
Block a user