|
#!/usr/bin/env bash
|
|
|
|
set -o pipefail
|
|
set -e
|
|
|
|
# Install NodeJS into the container
|
|
apt-get update
|
|
apt-get install --yes --no-install-recommends curl ca-certificates
|
|
curl --silent --location https://deb.nodesource.com/setup_6.x | bash -
|
|
apt-get install --yes nodejs
|