Initial commit: Add Dockerfile for pkgcheck-Gentoo-image.

This commit is contained in:
Manuel Friedli 2024-04-15 03:16:28 +02:00
commit c85ebd632f
Signed by: manuel
GPG Key ID: 41D08ABA75634DA1
2 changed files with 15 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.idea/
*.iml

13
pkgcheck.Dockerfile Normal file
View File

@ -0,0 +1,13 @@
# Portage tree.
FROM gentoo/portage:latest as portage
# Base Gentoo image
FROM gentoo/stage3:amd64-nomultilib-openrc as build
LABEL maintainer=manuel@fritteli.ch
LABEL description="Gentoo pkgcheck image"
COPY --from=portage /var/db/repos/gentoo /var/db/repos/gentoo
RUN echo 'FEATURES="-ipc-sandbox -network-sandbox -pid-sandbox"' >> /etc/portage/make.conf
RUN emerge -v --noreplace \
dev-util/pkgcheck \
dev-vcs/git