runner/Dockerfile

8 lines
162 B
Text
Raw Permalink Normal View History

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