12 lines
175 B
Bash
12 lines
175 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
echo "Installing Node.js dev container runtime"
|
|
|
|
# example (placeholder)
|
|
apt update
|
|
apt install -y nodejs npm
|
|
|
|
echo "Node version:"
|
|
node --version
|