test
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
Build and push image / docker (push) Successful in 40s
Python CI / python (push) Failing after 6s
Golang lint / GoLint (push) Successful in 18m57s

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