c4k-website/infrastructure/build/image/resources/install.sh
2023-11-03 10:54:58 +01:00

16 lines
314 B
Bash
Executable file

#!/bin/bash
set -eux
apt update > /dev/null;
apt install -y unzip rsync jq imagemagick curl
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;