test
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
Build and push image / docker (push) Failing after 24s
Python CI / python (push) Has been cancelled
Golang lint / GoLint (push) Has been cancelled

This commit is contained in:
2026-04-23 15:22:08 +03:00
parent 953dd83d42
commit e12fe78138
4 changed files with 47 additions and 1 deletions
-9
View File
@@ -1,9 +0,0 @@
FROM golang:1.26-alpine AS builder
WORKDIR /app
COPY . .
RUN go build -o gitea-runner main.go
FROM alpine:latest
WORKDIR /app
COPY --from=builder /app/gitea-runner .
CMD ["./gitea-runner"]