test
Golang lint / GoLint (push) Successful in 1m20s
Build and push image / docker (push) Failing after 51s
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled

This commit is contained in:
2026-04-23 14:19:05 +03:00
parent 7fd1354ed3
commit 7c93e5f94c
+9
View File
@@ -0,0 +1,9 @@
FROM go: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"]