buildbot/nix-eval Build done.
buildbot/nix-build Build done.
buildbot/nix-effects Build done.
Build images / Build (bitwarden) (push) Failing after 15s
Build images / Build (immich) (push) Failing after 40s
Build images / Build (sword-container-builder) (push) Failing after 38s
Build images / Build (builder) (push) Has been cancelled
Build images / Build (vm-test) (push) Has been cancelled
32 lines
563 B
Nix
32 lines
563 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
basePackages = with pkgs; [
|
|
(pkgs.buildEnv {
|
|
name = "base-env";
|
|
paths = [
|
|
bashInteractive
|
|
cacert
|
|
coreutils-full
|
|
dockerTools.binSh
|
|
dockerTools.caCertificates
|
|
dockerTools.usrBinEnv
|
|
findutils
|
|
gnugrep
|
|
gnused
|
|
];
|
|
})
|
|
];
|
|
|
|
mkImage =
|
|
options:
|
|
pkgs.dockerTools.buildLayeredImage (
|
|
pkgs.lib.mergeAttrs {
|
|
tag = "latest";
|
|
config = {
|
|
Cmd = [ "${pkgs.bashInteractive}/bin/bash" ];
|
|
};
|
|
} options
|
|
);
|
|
}
|