Gitea Actions support (#682)

This reworks the container to be usable with the Gitea act-runner and connect using TLS.

The directory structure is prepared so that a config.yml can be echoed into the container for authentication.

Co-authored-by: Pysen X <pysen@svartavillan.se>
Co-authored-by: Lunny Xiao <lunny@noreply.gitea.com>
Co-authored-by: techknowlogick <techknowlogick@noreply.gitea.com>
Reviewed-on: https://gitea.com/gitea/tea/pulls/682
Reviewed-by: Lunny Xiao <lunny@noreply.gitea.com>
Reviewed-by: techknowlogick <techknowlogick@noreply.gitea.com>
Co-authored-by: pysen <pysen@noreply.gitea.com>
Co-committed-by: pysen <pysen@noreply.gitea.com>
This commit is contained in:
pysen
2024-12-27 02:00:57 +00:00
committed by techknowlogick
parent 2fb291c6d4
commit 9de3fc8667
2 changed files with 42 additions and 5 deletions

View File

@ -1,10 +1,12 @@
FROM cgr.dev/chainguard/go:latest AS build
FROM docker.io/chainguard/go:latest AS build
COPY . /build/
WORKDIR /build
RUN make build
RUN make build && mkdir -p /app/.config/tea
FROM cgr.dev/chainguard/static:latest
COPY --from=build /build/tea /tea
FROM docker.io/chainguard/busybox:latest-glibc
COPY --from=build /build/tea /bin/tea
COPY --from=build --chown=65532:65532 /app /app
VOLUME [ "/app" ]
ENV HOME="/app"
ENTRYPOINT ["/tea"]
ENTRYPOINT ["/bin/sh", "-c"]
CMD [ "tea" ]