chore(gitlab-ci): ...

This commit is contained in:
Gregor Kleen 2021-09-17 14:29:06 +02:00
parent 2e09c25085
commit 12369dd385
2 changed files with 8 additions and 4 deletions

View File

@ -6,7 +6,7 @@ workflow:
default:
image:
name: registry.gitlab.com/fradrive/fradrive/nix-unstable:kkq79z2lyip9wasq9sfd8mgqgifj9prs
name: registry.gitlab.com/fradrive/fradrive/nix-unstable:hcdba12p7ajl9xylgmw4kfn6p9c185xy
variables:
NIX_PATH: "nixpkgs=http://nixos.org/channels/nixos-21.05/nixexprs.tar.xz"

View File

@ -125,12 +125,16 @@ let
};
in
{
ciDocker = prev.docker-nixpkgs.nix-flakes.overrideAttrs (oldAttrs: {
ciDocker = prev.dockerTools.buildImageWithNixDb rec {
name = "uniworx-ci";
inherit created;
contents = oldAttrs.contents or [] ++ [
tag = fromImage.imageTag;
fromImage = prev.docker-nixpkgs.nix-unstable;
contents = [
final.bash final.coreutils final.minio-client
];
});
};
} // mapAttrs (_name: mkUniworxDocker) {
uniworxDemoDocker = { isDemo = true; };
uniworxDocker = { isDemo = false; };