Files
gitea-runner-images/dockerfiles/python.dockerfile
Алексей Бадяев 0e2c85b624
All checks were successful
release / ubuntu-24_04 (push) Successful in 27m20s
release / ubuntu-22_04 (push) Successful in 28m41s
Исправлен конвейер.
2026-01-14 21:16:26 +03:00

25 lines
1.2 KiB
Docker

ARG BASE_IMAGE_TAG=ubuntu-22.04
FROM git.mousesoft.ru/ms/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="MouseSoft" \
org.opencontainers.image.url="https://git.mousesoft.ru/actions/gitea-runner-images" \
org.opencontainers.image.documentation="https://git.mousesoft.ru/actions/gitea-runner-images/src/branch/main/README.md" \
org.opencontainers.image.source="https://git.mousesoft.ru/actions/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 --allow-insecure-repositories && \
apt-get install -y --allow-unauthenticated dh-python libvirt-dev python3-all \
python3-dev python3-setuptools && \
rm -rf /var/lib/apt/lists/*