forked from smarkets/marge-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dockerize.nix
40 lines (40 loc) · 1.15 KB
/
dockerize.nix
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
{ pkgs }:
let
marge = pkgs.callPackage ./marge.nix {};
version = marge.version;
basicShadow =
# minimal user setup, so ssh won't whine 'No user exists for uid 0'
pkgs.runCommand "basic-shadow-setup" {}
''
mkdir -p $out
cd $out
mkdir -p root/.ssh
mkdir -p etc/pam.d
echo "root:x:0:0::/root:/bin/sh" >etc/passwd
echo "root:!x:::::::" >etc/shadow
echo "root:x:0:" >etc/group
echo "root:x::" >etc/gshadow
cat >etc/pam.d/other <<\EOF
account sufficient pam_unix.so
auth sufficient pam_rootok.so
password requisite pam_unix.so nullok sha512
session required pam_unix.so
EOF
'';
in
pkgs.dockerTools.buildImage {
name = "smarkets/marge-bot";
tag = "${version}";
contents =
with pkgs; [
basicShadow
busybox
gitMinimal
openssh
cacert
] ++ [ marge ];
config = {
Entrypoint = [ "/bin/marge.app" ];
Env = ["LANG=en_US.UTF-8" ''LOCALE_ARCHIVE=/lib/locale/locale-archive'' "GIT_SSL_CAINFO=/etc/ssl/certs/ca-bundle.crt" "SSL_CERT_FILE=/etc/ssl/certs/ca-bundle.crt"];
};
}