c4k-website/infrastructure/c4k-website-build/image/resources/install.sh
erik 70f356a1a9 Execute script in subshell located in folder
Better handling of white spaces in input.
Add test for creation of build jobs without sha256sum input.
2022-11-11 15:24:28 +01:00

14 lines
284 B
Bash
Executable file

#!/bin/bash
apt update > /dev/null;
apt install -y unzip rsync
mkdir /etc/lein/
install -m 0700 /tmp/entrypoint.sh /
install -m 0700 /tmp/functions.sh /usr/local/bin/
install -m 0700 /tmp/exclude.pattern /etc/
install -m 0700 /tmp/project.clj /etc/lein/
cd /etc/lein;
lein deps;