dda-devops-build/infrastructure/lein/image/resources/install.sh

13 lines
233 B
Bash
Raw Normal View History

2021-05-07 16:29:09 +00:00
#!/bin/bash
set -eux
function main() {
mkdir -p /usr/share/man/man1
apt update && apt -qqy install openjdk-11-jre-headless
npm install -g --save-dev shadow-cljs
cleanupDocker
}
source /tmp/install_functions.sh
main