9 lines
282 B
Docker
9 lines
282 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
|
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|