2019-05-08 20:36:00 +00:00
|
|
|
FROM codercom/code-server
|
|
|
|
LABEL author="Lossless GmbH <hello@lossless.com>"
|
|
|
|
|
2019-05-08 21:01:33 +00:00
|
|
|
USER root
|
|
|
|
|
2019-05-08 20:36:00 +00:00
|
|
|
WORKDIR /workspace
|
|
|
|
# important environment variables
|
|
|
|
ENV NODE_VERSION_LTS="10.15.3" NODE_VERSION_STABLE="11.2.0" NVM_DIR="/usr/local/nvm"
|
|
|
|
|
|
|
|
# Set debconf to run non-interactively and install packages
|
2019-05-08 20:53:23 +00:00
|
|
|
RUN su -c "echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections \
|
2019-05-08 20:36:00 +00:00
|
|
|
&& 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 \
|
|
|
|
g++ \
|
|
|
|
gcc \
|
|
|
|
git \
|
|
|
|
make \
|
|
|
|
openssl \
|
|
|
|
python \
|
|
|
|
rsync \
|
|
|
|
ssh \
|
|
|
|
wget \
|
|
|
|
&& apt-get update \
|
|
|
|
&& apt-get clean \
|
2019-05-08 20:53:23 +00:00
|
|
|
&& rm -r /var/lib/apt/lists/*"
|
2019-05-08 20:36:00 +00:00
|
|
|
|
2019-05-08 21:01:33 +00:00
|
|
|
USER coder
|
|
|
|
|
2019-05-08 20:36:00 +00:00
|
|
|
# Install nvm with node and npm
|
|
|
|
RUN curl https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
|
|
|
|
RUN bash -c "source $NVM_DIR/nvm.sh \
|
|
|
|
&& nvm install $NODE_VERSION_LTS \
|
|
|
|
&& nvm alias default $NODE_VERSION_STABLE \
|
|
|
|
&& nvm use default \
|
|
|
|
&& npm config set unsafe-perm true \
|
|
|
|
&& npm install -g npm"
|
|
|
|
|
|
|
|
ENV NODE_PATH $NVM_DIR/v$NODE_VERSION_STABLE/lib/node_modules
|
|
|
|
ENV PATH $NVM_DIR/versions/node/v$NODE_VERSION_STABLE/bin:$PATH
|