see also [forgejo/runner #406](https://code.forgejo.org/forgejo/runner/pulls/406) Reviewed-on: https://code.forgejo.org/forgejo/end-to-end/pulls/448 Reviewed-by: earl-warren <earl-warren@noreply.code.forgejo.org> Co-authored-by: gratux <gratux@noreply.code.forgejo.org> Co-committed-by: gratux <gratux@noreply.code.forgejo.org>
5 lines
No EOL
180 B
Docker
5 lines
No EOL
180 B
Docker
FROM debian:bookworm-slim
|
|
COPY entrypoint.sh /run/entrypoint.sh
|
|
# if we rebuild, we should notice this file change
|
|
COPY input.txt /run/input.txt
|
|
ENTRYPOINT [ "/run/entrypoint.sh" ] |