diff options
author | Jason Song <i@wolfogre.com> | 2023-06-15 07:27:35 +0200 |
---|---|---|
committer | Jason Song <i@wolfogre.com> | 2023-06-15 07:27:35 +0200 |
commit | 316534996aa6d0c037319e23651fd87024586000 (patch) | |
tree | 10d3c04562ec3c09e299154fd2c2dae8a8da36ed /Makefile | |
parent | Support changing labels (#201) (diff) | |
download | forgejo-runner-316534996aa6d0c037319e23651fd87024586000.tar.xz forgejo-runner-316534996aa6d0c037319e23651fd87024586000.zip |
Build docker image `gitea/act_runner/x.y.z-dind-rootless` (#239)
Follow #208
Reviewed-on: https://gitea.com/gitea/act_runner/pulls/239
Reviewed-by: Zettat123 <zettat123@noreply.gitea.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ GOFILES := $(shell find . -type f -name "*.go" -o -name "go.mod" ! -name "genera DOCKER_IMAGE ?= gitea/act_runner DOCKER_TAG ?= nightly DOCKER_REF := $(DOCKER_IMAGE):$(DOCKER_TAG) -DOCKER_ROOTLESS_REF := $(DOCKER_IMAGE)_rootless:$(DOCKER_TAG) +DOCKER_ROOTLESS_REF := $(DOCKER_IMAGE):$(DOCKER_TAG)-dind-rootless ifneq ($(shell uname), Darwin) EXTLDFLAGS = -extldflags "-static" $(null) |