runner/Dockerfile

8 lines
158 B
Text
Raw Permalink Normal View History

2024-12-25 06:06:47 +00:00
FROM code.forgejo.org/forgejo/runner:5
2024-11-03 22:16:04 +00:00
USER root
COPY ./entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
USER runner
ENTRYPOINT [ "/entrypoint.sh" ]