CI: oops
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Cadey Ratio 2020-05-06 09:47:54 -04:00
parent 1e0f54dc49
commit 859e61feb0
1 changed files with 3 additions and 2 deletions

View File

@ -6,9 +6,10 @@ let
inherit pkgs;
};
tex = pkgs.callPackage ../nix/texlive.nix { };
version = "devel";
book = pkgs.stdenv.mkDerivation {
pname = "lewa-book";
version = "devel";
inherit version;
src = ./.;
phases = "buildPhase installPhase";
buildInputs = with pkgs; [
@ -34,7 +35,7 @@ let
'';
};
in pkgs.dockerTools.buildLayeredImage {
name = "xena/lewa-book:${book.version}";
name = "xena/lewa-book:${version}";
contents = [ book nur.repos.xe.quickserv ];
config.Cmd = [ "/bin/quickserv" "-port=9001" "-dir=/book" ];
}