FILE / ScuroNeko/gitea-runner-test

Dockerfile

Исходный файл и его история в репозитории.
FILE 7c93e5f94c4a9bd8628a09856367cd5c6f804c06
Files
gitea-runner-test/Dockerfile
T
ScuroNeko 7c93e5f94c
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
test
2026-04-23 14:19:05 +03:00

9 lines
185 B
Docker

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"]