blob: 8d6431f53f336635c1bc3b9d4e5079a9146b9713 (
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
44
45
46
47
48
|
# Dockerfile to create an environment that contains the Nix package manager.
FROM alpine
ARG NIX_VERSION
ENV NIX_VERSION ${NIX_VERSION:-2.3.9}
ARG LANG
ENV LANG ${LANG:-"en_US.UTF-8"}
RUN addgroup -g 30000 -S nixbld \
&& for i in $(seq 1 30); do adduser -S -D -h /var/empty -g "Nix build user $i" -u $((30000 + i)) -G nixbld nixbld$i ; done \
&& adduser -D nixuser \
&& mkdir -m 0755 /nix && chown nixuser /nix \
&& apk add --no-cache bash xz \
&& rm -rf /var/cache/apk/* \
&& mkdir -p /etc/nix && touch /etc/nix/nix.conf
USER nixuser
ENV USER=nixuser
ENV HOME="/home/nixuser"
ENV NIX_SYSTEM_PATH="/nix/var/nix/profiles/system"
ENV NIX_PROFILE="$HOME/nix-envs"
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_PROFILE="$NIX_SYSTEM_PATH" ~/nix-*-x86_64-linux/install \
&& rm -rf ~/nix-*-*
# All subsequent "RUN" will use a login shell
SHELL ["/usr/bin/env", "bash", "-l", "-c"]
# Create bash profile
COPY --chown=nixuser:nixuser files/.profile ${HOME}/.profile
RUN nix-channel --add https://nixos.org/channels/nixos-unstable nixpkgs \
&& nix-channel --update
# Propagate UTF8
# https://github.com/NixOS/nix/issues/599#issuecomment-153885553
# The same is hapenning with stack2nix
RUN nix-env -p "$NIX_SYSTEM_PATH" -iA nixpkgs.glibcLocales
# < Nix context as a volume
# We want to be able to define /nix/store as a volume
VOLUME ["/nix"]
# />
# Make sure to use "login" shell when running container
ENTRYPOINT ["/usr/bin/env", "bash", "-l", "-c"]
|