mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 14:45:42 +03:00
11 lines
327 B
Bash
11 lines
327 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -eEo pipefail
|
||
|
|
||
|
wget --no-check-certificate -c https://gitlab-runner-downloads.s3.amazonaws.com/latest/deb/gitlab-runner_amd64.deb --random-wait -O /tmp/gitlab-runner.deb
|
||
|
|
||
|
dpkg -i "/tmp/gitlab-runner.deb"
|
||
|
apt-get update
|
||
|
apt-get -f install -y
|
||
|
rm -rfv /var/lib/apt/lists/*
|
||
|
rm -rfv "/tmp/gitlab-runner.deb"
|