d4caa7e065
This adds tini as a runtime init (https://github.com/krallin/tini). It improves signal handling for the container, see https://github.com/krallin/tini#why-tini. An alternative could be to run the container with `docker run --init ...` which also places tini as a runtime init as PID 1. Co-authored-by: sando38 <sandomir@tutanota.com> Reviewed-on: https://gitea.com/gitea/act_runner/pulls/180 Reviewed-by: Jason Song <i@wolfogre.com> Co-authored-by: sando38 <sando38@noreply.gitea.io> Co-committed-by: sando38 <sando38@noreply.gitea.io>
17 lines
436 B
Docker
17 lines
436 B
Docker
FROM golang:1.20-alpine3.17 as builder
|
|
RUN apk add --no-cache make=4.3-r1
|
|
|
|
COPY . /opt/src/act_runner
|
|
WORKDIR /opt/src/act_runner
|
|
|
|
RUN make clean && make build
|
|
|
|
FROM alpine:3.17
|
|
RUN apk add --no-cache \
|
|
git=2.38.5-r0 bash=5.2.15-r0 tini=0.19.0-r1 \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
COPY --from=builder /opt/src/act_runner/act_runner /usr/local/bin/act_runner
|
|
COPY run.sh /opt/act/run.sh
|
|
|
|
ENTRYPOINT ["/sbin/tini","--","/opt/act/run.sh"]
|