guix-builder/Dockerfile

30 lines
887 B
Docker
Raw Permalink Normal View History

FROM scratch
# Extract guix produced relocatable
2023-07-15 20:37:59 +00:00
ADD guix-tarball-pack.tar.gz /guix-builder
# Extract variety of links to be setup in root, pointing into /guix-builder
ADD links.tar.gz /
ADD passwd /etc/passwd
# Create an empty directory for use by proot
#
# Any following RUN command or command in the container will not run without the below PROOT
# env var set, and the directory existing
ADD passwd /tmp/proot/delete-me
ENV PROOT_TMP_DIR=/tmp/proot
# Setup ssl and glibc-locales environment variables
2023-12-31 20:01:01 +00:00
ENV SSL_CERT_DIR=/etc/ssl/certs
ENV SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
ENV GUIX_LOCPATH=/guix-builder/lib/locale
# Remove the empty file that was used to create a temporary directory, and adjust file
# permissions
RUN rm /tmp/proot/delete-me \
&& chown -PR 0:0 /etc /bin
2023-07-15 20:37:59 +00:00
VOLUME /var/guix/daemon-socket/socket /gnu/store /etc/ssl
CMD ["/guix-builder/bin/bash"]