arkanum/finalize-codeserver.sh

16 lines
299 B
Bash

#!/bin/bash
echo "**** install dev runtimes ****"
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
apt-get install --no-install-recommends -y \
nodejs \
golang-go
echo "**** clean up ****"
apt-get clean
rm -rf \
/config/* \
/tmp/* \
/var/lib/apt/lists/* \
/var/tmp/*