All checks were successful
publish / build-and-publish (push) Successful in 4m11s
6 lines
230 B
Docker
6 lines
230 B
Docker
FROM gentoo/portage:latest as portage
|
|
FROM gentoo/stage3:amd64-openrc
|
|
COPY --from=portage /var/db/repos/gentoo /var/db/repos/gentoo
|
|
RUN emerge -q app-portage/portage-utils && rm -Rf /var/db/repos/gentoo
|
|
ENTRYPOINT [ "/bin/bash" ]
|