gentoo-base: Only include run-time dependencies in image.

This commit is contained in:
tastytea 2020-05-02 23:14:52 +02:00
parent cae06085cf
commit cdf5831ac2
1 changed files with 5 additions and 6 deletions

View File

@ -13,19 +13,18 @@ RUN echo 'MAKEOPTS="-j1"' >> /etc/portage/make.conf
RUN echo 'USE="minimal -cracklib -gpg -ncurses -nls -pam -pcre -pcre-jit -perl \
-readline -rsync-verify"' >> /etc/portage/make.conf
RUN eselect profile set default/linux/amd64/17.1
RUN quickpkg --include-config=y @system sys-libs/glibc \
app-portage/elt-patches dev-lang/perl
RUN emerge --root=/workdir --usepkgonly --nodeps --quiet \
app-portage/elt-patches dev-lang/perl
RUN emerge --root=/workdir --root-deps --usepkg --quiet sys-apps/portage
RUN quickpkg --include-config=y @world sys-libs/glibc
RUN emerge --root=/workdir --usepkg --quiet sys-apps/portage
RUN cp /etc/portage/make.conf /workdir/etc/portage/make.conf
RUN rm -r /workdir/usr/share/{doc,i18n,locale,man,zoneinfo}
# Final image.
FROM scratch
LABEL maintainer="tastytea+docker@tastytea.de"
LABEL description="[WIP] My base for Gentoo images."
LABEL description="My base for Gentoo images (Without build dependencies)."
COPY --from=build /workdir /
RUN echo 'portage:x:250:250:portage:/var/tmp/portage:/bin/false' >> /etc/passwd
RUN echo 'portage::250:portage' >> /etc/group
# TODO: Mount distfiles.
# TODO: Use ccache with data on external volume.