All checks were successful
release / release (push) Successful in 1m44s
23 lines
1014 B
Docker
23 lines
1014 B
Docker
ARG BASE_IMAGE_TAG
|
|
|
|
FROM gitea/runner-images:${BASE_IMAGE_TAG}
|
|
|
|
ARG IMAGE_CREATED
|
|
ARG IMAGE_VERSION
|
|
ARG IMAGE_REVISION
|
|
|
|
LABEL org.opencontainers.image.created="${IMAGE_CREATED}" \
|
|
org.opencontainers.image.authors="Seeseemelk" \
|
|
org.opencontainers.image.url="https://gitea.seeseepuff.be/seeseemelk/runner-images" \
|
|
org.opencontainers.image.documentation="https://gitea.seeseepuff.be/seeseemelk/runner-images/src/branch/main/README.md" \
|
|
org.opencontainers.image.source="https://gitea.seeseepuff.be/seeseemelk/runner-images" \
|
|
org.opencontainers.image.version="${IMAGE_VERSION}" \
|
|
org.opencontainers.image.revision="${IMAGE_REVISION}" \
|
|
org.opencontainers.image.vendor="Seeseemelk" \
|
|
org.opencontainers.image.licenses="MIT" \
|
|
org.opencontainers.image.title="Gitea Actions runner images customised by Seeseemelk" \
|
|
org.opencontainers.image.description="Docker images used by act_runner to run workflows."
|
|
|
|
RUN apt-get update && \
|
|
apt-get -y install gnupg2
|