mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 00:00:42 +01:00
16 lines
342 B
Plaintext
16 lines
342 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
|
||
|
echo "--> Turn off StrictKeyChecking"
|
||
|
cat > /etc/ssh/ssh_config <<EOF
|
||
|
Host *
|
||
|
StrictHostKeyChecking no
|
||
|
UserKnownHostsFile=/dev/null
|
||
|
EOF
|
||
|
|
||
|
echo "--> Install Semaphore entrypoint wrapper script"
|
||
|
cp ./deployment/docker/common/semaphore-wrapper /usr/local/bin/semaphore-wrapper
|
||
|
task deps
|
||
|
task compile
|
||
|
task build:local
|