blob: 5c4c46f155c70be802767a3a17d3e2b13d78b092 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Dockerfile to create an environment that contains the Nix package manager.
FROM debian:stable-slim
ARG NIX_VERSION
ENV NIX_VERSION ${NIX_VERSION:-2.3.1}
ARG LANG
ENV LANG ${LANG:-"en_US.UTF-8"}
RUN addgroup --gid 30000 --system nixbld \
&& for i in $(seq 1 30); do adduser --system --disabled-password --home /var/empty --gecos "Nix build user $i" --uid $((30000 + i)) --ingroup nixbld nixbld$i ; done \
&& adduser --disabled-password nixuser \
&& mkdir -m 0755 /nix && chown nixuser /nix \
&& apt update && apt install -y wget xz-utils \
&& apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
# sandboxing enabled by default since 2.2
&& mkdir -p /etc/nix && echo 'sandbox = false' > /etc/nix/nix.conf
USER nixuser
ENV USER=nixuser
ENV HOME="/home/nixuser"
RUN cd && wget https://nixos.org/releases/nix/nix-$NIX_VERSION/nix-$NIX_VERSION-x86_64-linux.tar.xz \
&& tar xJf nix-*-x86_64-linux.tar.xz \
&& ~/nix-*-x86_64-linux/install \
&& rm -rf ~/nix-*-*
ENV ENV="/home/nixuser/.nix-profile/etc/profile.d/nix.sh"
RUN echo ". ${ENV}" >> ${HOME}/.profile
# All subsequent "RUN" will use a login shell
SHELL ["/usr/bin/env", "bash", "-l", "-c"]
RUN nix-channel --add https://nixos.org/channels/nixpkgs-19.09-darwin nixpkgs \
&& nix-channel --add https://nixos.org/channels/nixpkgs-unstable unstable \
&& nix-channel --update
# Propagate UTF8
# https://github.com/NixOS/nix/issues/599#issuecomment-153885553
# The same is hapenning with stack2nix
RUN nix-env -iA nixpkgs.glibcLocales \
&& echo "export LOCALE_ARCHIVE=$(nix-env --installed --no-name --out-path --query glibc-locales)/lib/locale/locale-archive" >> ${HOME}/.profile
# Make sure to use "login" shell when running container
ENTRYPOINT ["/usr/bin/env", "bash", "-l", "-c"]
|