aboutsummaryrefslogtreecommitdiffhomepage
path: root/alpine
diff options
context:
space:
mode:
authorPaul B <paul@bonaud.fr>2018-10-31 11:43:02 +0100
committerPaul B <paul@bonaud.fr>2018-10-31 11:58:41 +0100
commit0366f366617a0a5c36d365c56a2c1178fd19ed94 (patch)
treea5c273f908a5a5a7e8c6dd0af8b3f0d98e4d50bb /alpine
parentdedbcf1564d728be9e5bc359244b4ffba7665615 (diff)
downloaddocker-nix-0366f366617a0a5c36d365c56a2c1178fd19ed94.tar.gz
docker-nix-0366f366617a0a5c36d365c56a2c1178fd19ed94.tar.zst
docker-nix-0366f366617a0a5c36d365c56a2c1178fd19ed94.zip
Add debian based images
Diffstat (limited to 'alpine')
-rw-r--r--alpine/Dockerfile40
1 files changed, 40 insertions, 0 deletions
diff --git a/alpine/Dockerfile b/alpine/Dockerfile
new file mode 100644
index 0000000..5aa7fcc
--- /dev/null
+++ b/alpine/Dockerfile
@@ -0,0 +1,40 @@
1# Dockerfile to create an environment that contains the Nix package manager.
2FROM alpine
3
4ARG NIX_VERSION
5ENV NIX_VERSION ${NIX_VERSION:-2.1.3}
6ARG LANG
7ENV LANG ${LANG:-"en_US.UTF-8"}
8
9RUN addgroup -g 30000 -S nixbld \
10 && 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 \
11 && adduser -D nixuser \
12 && mkdir -m 0755 /nix && chown nixuser /nix \
13 && apk add --no-cache bash \
14 && rm -rf /var/cache/apk/*
15
16USER nixuser
17ENV USER=nixuser
18ENV HOME="/home/nixuser"
19
20RUN cd && wget https://nixos.org/releases/nix/nix-$NIX_VERSION/nix-$NIX_VERSION-x86_64-linux.tar.bz2 \
21 && tar xjf nix-*-x86_64-linux.tar.bz2 \
22 && ~/nix-*-x86_64-linux/install \
23 && rm -rf ~/nix-*-*
24
25ENV ENV="/home/nixuser/.nix-profile/etc/profile.d/nix.sh"
26RUN echo ". ${ENV}" >> ${HOME}/.profile
27# All subsequent "RUN" will use a login shell
28SHELL ["/usr/bin/env", "bash", "-l", "-c"]
29
30RUN nix-channel --add https://nixos.org/channels/nixpkgs-unstable \
31 && nix-channel --update
32
33# Propagate UTF8
34# https://github.com/NixOS/nix/issues/599#issuecomment-153885553
35# The same is hapenning with stack2nix
36RUN nix-env -iA nixpkgs.glibcLocales \
37 && echo "export LOCALE_ARCHIVE=$(nix-env --installed --no-name --out-path --query glibc-locales)/lib/locale/locale-archive" >> ${HOME}/.profile
38
39# Make sure to use "login" shell when running container
40ENTRYPOINT ["/usr/bin/env", "bash", "-l", "-c"]