[FORGEJO] fix name of binary to forgejo-runner for rootless docker image

This commit is contained in:
Louis Seubert 2023-07-08 11:29:35 +02:00 committed by Earl Warren
parent 331984a5b9
commit 91cf33f75d
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
2 changed files with 8 additions and 8 deletions

View file

@ -2,8 +2,8 @@ FROM golang:1.21-alpine3.18 as builder
# Do not remove `git` here, it is required for getting runner version when executing `make build`
RUN apk add --no-cache make git
COPY . /opt/src/act_runner
WORKDIR /opt/src/act_runner
COPY . /opt/src/forgejo-runner
WORKDIR /opt/src/forgejo-runner
RUN make clean && make build
@ -12,7 +12,7 @@ USER root
RUN apk add --no-cache \
git bash supervisor
COPY --from=builder /opt/src/act_runner/act_runner /usr/local/bin/act_runner
COPY --from=builder /opt/src/forgejo-runner/forgejo-runner /usr/local/bin/forgejo-runner
COPY /scripts/supervisord.conf /etc/supervisord.conf
COPY /scripts/run.sh /opt/act/run.sh
COPY /scripts/rootless.sh /opt/act/rootless.sh