update go version for Dockerfile
Some checks failed
release-nightly / goreleaser (push) Failing after 11s
release-nightly / release-image (push) Failing after 17s
release-tag / goreleaser (push) Failing after 18s
checks / check and test (push) Successful in 16s
release-tag / release-image (push) Failing after 24s

This commit is contained in:
2024-09-06 14:00:50 +02:00
parent b6ddf0dce2
commit db2c4d3a44

View File

@@ -1,4 +1,4 @@
FROM golang:1.21-alpine3.18 as builder FROM golang:1.23-alpine3.20 as builder
# Do not remove `git` here, it is required for getting runner version when executing `make build` # Do not remove `git` here, it is required for getting runner version when executing `make build`
RUN apk add --no-cache make git RUN apk add --no-cache make git
@@ -7,7 +7,7 @@ WORKDIR /opt/src/act_runner
RUN make clean && make build RUN make clean && make build
FROM alpine:3.18 FROM alpine:3.20
RUN apk add --no-cache git bash tini RUN apk add --no-cache git bash tini
COPY --from=builder /opt/src/act_runner/act_runner /usr/local/bin/act_runner COPY --from=builder /opt/src/act_runner/act_runner /usr/local/bin/act_runner