Files
gentoo-utils-gitea/.docker/Dockerfile
penguin 69bde9b17f
All checks were successful
Gentoo Utils / build-oci-image (push) Successful in 7m34s
Gentoo Utils / grep (push) Successful in 1m8s
Gentoo Utils / check-format (push) Successful in 1m17s
Gentoo Utils / docs (push) Successful in 1m28s
Gentoo Utils / build (push) Successful in 1m39s
Gentoo Utils / test (push) Successful in 32s
Gentoo Utils / fuzz (push) Successful in 1m21s
ci: image: use gentoo repo with EGIT_OVERRIDE_REPO_MESONBUILD_MESON for meson
2025-12-27 11:12:50 -06:00

31 lines
548 B
Docker

FROM gentoo/stage3:latest
COPY ./. /
RUN getuto
RUN emerge-webrsync
RUN mkdir -p /var/cache/distfiles/git3-src && chown portage:portage /var/cache/distfiles/git3-src
ENV EGIT_OVERRIDE_REPO_MESONBUILD_MESON=https://jturnerusa.dev/cgit/meson
RUN emerge \
=dev-lang/rust-bin-9999 \
=dev-build/meson-9999::gentoo \
llvm-core/clang \
llvm-core/lld \
dev-vcs/git \
sys-process/parallel \
net-libs/nodejs
RUN useradd -m gentooligan
USER gentooligan
WORKDIR /workspace
ENTRYPOINT ["/entrypoint.sh"]
CMD ["/bin/bash"]