Skip to content

Instantly share code, notes, and snippets.

@mtibben
Created August 24, 2018 00:28
Show Gist options
  • Save mtibben/94affab45f091d310dfc161f4d9f1eda to your computer and use it in GitHub Desktop.
Save mtibben/94affab45f091d310dfc161f4d9f1eda to your computer and use it in GitHub Desktop.
# https://github.com/nodesource/distributions/issues/33
NODE_VERSION 8.11.2
RUN set -eax \
; curl -sSL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - \
; . /etc/lsb-release \
; export NODE_MAJOR_VERSION="$(echo ${NODE_VERSION} | cut -d . -f1)" \
; echo "deb https://deb.nodesource.com/node_$NODE_MAJOR_VERSION.x $DISTRIB_CODENAME main" > /etc/apt/sources.list.d/nodesource.list \
; apt-get update \
; apt-get install -y nodejs=$NODE_VERSION
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment