9 lines
294 B
Docker
9 lines
294 B
Docker
FROM ghcr.io/catthehacker/ubuntu:act-22.04
|
|
|
|
USER root
|
|
RUN curl https://code.forgejo.org/forgejo/runner/releases/download/v11.2.0/forgejo-runner-11.2.0-linux-amd64 -o /bin/forgejo-runner && \
|
|
chmod +x /bin/forgejo-runner
|
|
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|