Files
gentoo-utils-gitea/.docker/Dockerfile
John Turner 08b00fbc99
Some checks failed
Gentoo Utils / build-docker (push) Successful in 8s
Gentoo Utils / build (push) Failing after 10s
test
2025-12-06 20:41:11 +00:00

39 lines
639 B
Docker

FROM gentoo/stage3:latest
COPY ./. /
ENV EGIT_CLONE_TYPE=shallow
RUN getuto
RUN emerge-webrsync
RUN emerge \
=dev-lang/rust-bin-9999 \
llvm-core/clang \
llvm-core/lld \
dev-vcs/git \
sys-process/parallel \
dev-util/cbindgen \
net-libs/nodejs
RUN git clone https://jturnerusa.dev/cgit/ebuilds/ /var/db/repos/spawns
COPY etc/portage/repos.conf /etc/portage/
RUN mkdir -p /var/cache/distfiles/git3-src && chown portage:portage /var/cache/distfiles/git3-src
RUN emerge =dev-build/meson-9999
RUN useradd -m gentooligan
# dummy command
RUN true
USER gentooligan
WORKDIR /workspace
ENTRYPOINT /bin/bash