garm-provider-edge-connect/runner/Dockerfile
Martin McCaffery 6b703784e3
All checks were successful
Go Tests / go-tests (push) Successful in 1m33s
Update READMEs, add pause on failure for debugging
2025-12-22 16:18:50 +01:00

12 lines
465 B
Docker

FROM ghcr.io/catthehacker/ubuntu:act-22.04
USER root
RUN curl https://edp.buildth.ing/DevFW-CICD/runner/releases/download/v11.3.3/runner_Linux_x86_64 -o /bin/forgejo-runner && \
chmod +x /bin/forgejo-runner
COPY ./entrypoint.sh /entrypoint.sh
LABEL org.opencontainers.image.description="Custom GARM provider for Edge Connect. Built from \
https://edp.buildth.ing/DevFW-CICD/garm-provider-edge-connect/src/branch/main/runner"
ENTRYPOINT [ "/entrypoint.sh" ]