Initial commit

First container (for gitea)
This commit is contained in:
2026-01-23 21:02:54 +02:00
commit 5c42d9f22a
12 changed files with 386 additions and 0 deletions

10
Dockerfile.gnu Normal file
View File

@@ -0,0 +1,10 @@
# syntax=docker/dockerfile:1
# gentoo-gnu
FROM gentoo-base-gnu AS builder
WORKDIR /workdir
RUN bin/gentoo-emerge -1c --with-bdeps=n
FROM scratch
WORKDIR /
COPY --from=builder /mnt/gentoo /
CMD ["/bin/bash"]