This commit is contained in:
30
dockerfiles/base.dockerfile
Normal file
30
dockerfiles/base.dockerfile
Normal file
@@ -0,0 +1,30 @@
|
||||
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="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."
|
||||
|
||||
ENV LANG=ru_RU.UTF-8
|
||||
|
||||
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/*
|
||||
|
||||
COPY --chown=root:root etc /etc
|
||||
|
||||
RUN locale-gen --lang ru
|
||||
23
dockerfiles/python.dockerfile
Normal file
23
dockerfiles/python.dockerfile
Normal file
@@ -0,0 +1,23 @@
|
||||
ARG BASE_IMAGE_TAG
|
||||
|
||||
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/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 libvirt-dev python3-all python3-dev python3-setuptools && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
Reference in New Issue
Block a user