fix: dont hardcode versions and tini
This commit is contained in:
parent
35596a182b
commit
f1e7a886c5
1 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
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
|
||||
RUN apk add --no-cache make git
|
||||
|
||||
COPY . /opt/src/act_runner
|
||||
WORKDIR /opt/src/act_runner
|
||||
|
@ -9,10 +9,10 @@ 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 \
|
||||
git bash \
|
||||
&& 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"]
|
||||
ENTRYPOINT ["/opt/act/run.sh"]
|
||||
|
|
Loading…
Add table
Reference in a new issue