File Dockerfile of Package container-gitlab-runner-helper
#!BuildVersion: 17.9.0
#!BuildTag: gitlab-runner-helper:x86_64-v<VERSION>
#!BuildTag: gitlab-runner-helper:x86_64-latest
#!BuildTag: gitlab-runner-helper:latest
FROM opensuse/tumbleweed:latest
# Define your additional repositories here
RUN zypper ar http://download.opensuse.org/repositories/home:sthackarajan:apps/openSUSE_Tumbleweed/ "home:sthackarajan:apps"
RUN zypper --gpg-auto-import-keys ref
RUN zypper install -y gitlab-runner-helper=17.9.0 catatonit
ADD entrypoint /entrypoint
RUN chmod +x /entrypoint
ENTRYPOINT ["/usr/bin/catatonit", "--", "/entrypoint"]
CMD ["sh"]