All checks were successful
Go Tests / go-tests (push) Successful in 1m31s
12 lines
465 B
Docker
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" ]
|