From 7c93e5f94c4a9bd8628a09856367cd5c6f804c06 Mon Sep 17 00:00:00 2001 From: ScuroNeko Date: Thu, 23 Apr 2026 14:19:05 +0300 Subject: [PATCH] test --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..03e46d9 --- /dev/null +++ b/Dockerfile @@ -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"] \ No newline at end of file