add runner entrypoint and dockerfile
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 14s

This commit is contained in:
merith-tk 2024-11-03 14:16:04 -08:00
parent aba968f9ed
commit ca84c6f041
2 changed files with 140 additions and 1 deletions

View file

@ -1 +1,8 @@
FROM alpine:3.12
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" ]