2
0
gitea-runner-images/dockerfiles/base.dockerfile

25 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2024-10-10 21:41:16 +07:00
ARG BASE_IMAGE_TAG=act-22.04
2024-10-10 18:48:49 +07:00
FROM ghcr.io/catthehacker/ubuntu:${BASE_IMAGE_TAG}
2024-10-10 18:48:49 +07:00
ARG IMAGE_CREATED
ARG IMAGE_VERSION
ARG IMAGE_REVISION
LABEL org.opencontainers.image.created="${IMAGE_CREATED}" \
org.opencontainers.image.authors="MouseSoft" \
org.opencontainers.image.url="https://git.mousesoft.ru/ms/gitea-runner-images" \
org.opencontainers.image.documentation="https://git.mousesoft.ru/ms/gitea-runner-images/src/branch/main/README.md" \
org.opencontainers.image.source="https://git.mousesoft.ru/ms/gitea-runner-images" \
org.opencontainers.image.version="${IMAGE_VERSION}" \
org.opencontainers.image.revision="${IMAGE_REVISION}" \
org.opencontainers.image.vendor="MouseSoft" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.title="MouseSoft Gitea Actions runner images" \
org.opencontainers.image.description="MouseSoft docker images used by act_runner to run workflows."
RUN apt-get update && \
apt-get install -y build-essential debhelper dh-exec dpkg-dev dput-ng \
fakeroot gawk locales sed && \
rm -rf /var/lib/apt/lists/*