mirror of
https://gitea.com/gitea/act_runner
synced 2024-11-11 18:15:52 +01:00
d5e4baed54
regression of https://gitea.com/gitea/act_runner/pulls/172 https://gitea.com/gitea/act_runner/actions/runs/400/jobs/1 In the step of `Build and push`, log output that `git: not found`. This lead to runner's version not being injected when go compile. ![image](/attachments/031ecdf2-6baa-410c-bab7-c6945140c5ad) Co-authored-by: Jason Song <i@wolfogre.com> Reviewed-on: https://gitea.com/gitea/act_runner/pulls/181 Reviewed-by: Jason Song <i@wolfogre.com> Co-authored-by: sillyguodong <gedong_1994@163.com> Co-committed-by: sillyguodong <gedong_1994@163.com>
19 lines
548 B
Docker
19 lines
548 B
Docker
FROM golang:1.20-alpine3.17 as builder
|
|
# Do not remove `git` here, it is required for getting runner version when executing `make build`
|
|
RUN apk add --no-cache make=4.3-r1 git=2.38.5-r0
|
|
|
|
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"]
|