Initial commit: Add Dockerfile for pkgcheck-Gentoo-image.
This commit is contained in:
commit
c85ebd632f
2 changed files with 15 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
.idea/
|
||||
*.iml
|
13
pkgcheck.Dockerfile
Normal file
13
pkgcheck.Dockerfile
Normal 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
|
Loading…
Reference in a new issue