From 5dd99f7bae0c479735b9f208462adefd1839a4d8 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Tue, 25 Nov 2025 16:48:18 -0600 Subject: [PATCH] Need to add options to Docker image --- .gitlab-ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 293c6d9..4781c11 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,10 +33,15 @@ default: - IMG: - img-bitwarden - img-immich + variables: + NIX_OPTIONS: >- + --option + extra-experimental-features + "flake nix-command" script: - - nix build ".#${IMG}" + - nix $NIX_OPTIONS build ".#${IMG}" - cp -L result "${IMG}.tar.gz" - - nix build "nixpkgs#podman" --out-link podman + - nix $NIX_OPTIONS build "nixpkgs#podman" --out-link podman - >- ./podman/bin/podman login -u "$CI_REGISTRY_USER"