1
0
Fork 0
This repository has been archived on 2025-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
gitlab-hetzner-runner/Dockerfile
Sheogorath 698b12d549
Refactor: Upgrade build instructions to new CI setup
Thge new build will use podman, build-ah-engine and other fancy projects
I build over the past. This should make the the builds more sustainable
for the the future.
2020-04-09 18:53:09 +02:00

23 lines
1 KiB
Docker

FROM docker.io/gitlab/gitlab-runner:v12.9.0
LABEL maintainer="Sheogorath <sheogorath@shivering-isles.com>"
ARG HETZNER_VERSION=1.2.2
ARG HETZNER_HASH=cd477aabb0d31937a2568c3f0d362f578790e0cbddd0c2b144145a1c597b5c60
RUN true \
&& apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y sudo \
&& apt-get clean && apt-get purge && rm -r /var/lib/apt/lists/* \
&& true
RUN true \
&& wget "https://github.com/JonasProgrammer/docker-machine-driver-hetzner/releases/download/${HETZNER_VERSION}/docker-machine-driver-hetzner_${HETZNER_VERSION}_linux_amd64.tar.gz" \
&& echo "${HETZNER_HASH} docker-machine-driver-hetzner_${HETZNER_VERSION}_linux_amd64.tar.gz" > check_file \
&& sha256sum -c check_file \
&& tar -xvf "docker-machine-driver-hetzner_${HETZNER_VERSION}_linux_amd64.tar.gz" \
&& rm "docker-machine-driver-hetzner_${HETZNER_VERSION}_linux_amd64.tar.gz" check_file \
&& chmod +x docker-machine-driver-hetzner \
&& mv docker-machine-driver-hetzner /usr/local/bin/ \
&& true