1#!/usr/bin/env bash
2
3echo "--> Turn off StrictKeyChecking"
4cat > /etc/ssh/ssh_config <<EOF
5Host *
6    StrictHostKeyChecking no
7    UserKnownHostsFile=/dev/null
8EOF
9
10echo "--> Install Semaphore entrypoint wrapper script"
11cp ./deployment/docker/common/semaphore-wrapper /usr/local/bin/semaphore-wrapper
12task deps
13task compile
14task build:local
15