c4k-website/infrastructure/build/image/resources/install.sh

15 lines
304 B
Bash
Raw Normal View History

#!/bin/bash
apt update > /dev/null;
2023-10-13 10:42:31 +00:00
apt install -y unzip rsync jq imagemagick curl
2022-09-27 15:06:21 +00:00
mkdir /etc/lein/
install -m 0700 /tmp/entrypoint.sh /
install -m 0700 /tmp/functions.sh /usr/local/bin/
2022-09-27 15:06:21 +00:00
install -m 0700 /tmp/exclude.pattern /etc/
install -m 0700 /tmp/project.clj /etc/lein/
cd /etc/lein;
lein deps;