Compare commits
1 Commits
a67eb5a40c
...
3d8e0fe114
Author | SHA1 | Date |
---|---|---|
coolneng | 3d8e0fe114 |
|
@ -1,2 +1 @@
|
|||
*.fastq
|
||||
result
|
||||
|
|
22
default.nix
22
default.nix
|
@ -1,22 +0,0 @@
|
|||
{ sources ? import ./nix/sources.nix, pkgs ? import sources.nixpkgs { } }:
|
||||
|
||||
with pkgs;
|
||||
|
||||
let
|
||||
srcNoTarget = dir:
|
||||
builtins.filterSource
|
||||
(path: type: type != "directory" || builtins.baseNameOf path != "target")
|
||||
dir;
|
||||
src = srcNoTarget ./.;
|
||||
|
||||
in stdenv.mkDerivation {
|
||||
name = "locigenesis";
|
||||
phases = "installPhase";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp -r ${src}/src $out
|
||||
cp -r ${src}/data/*.rds $out
|
||||
cp ${src}/generation.sh $out
|
||||
'';
|
||||
}
|
11
docker.nix
11
docker.nix
|
@ -1,11 +0,0 @@
|
|||
{ sources ? import ./nix/sources.nix, pkgs ? import sources.nixpkgs { } }:
|
||||
|
||||
with pkgs;
|
||||
|
||||
let locigenesis = pkgs.callPackage ./default.nix { };
|
||||
|
||||
in dockerTools.buildImage {
|
||||
name = "akasroua/locigenesis";
|
||||
contents = [ locigenesis ];
|
||||
config.Entrypoint = [ "${locigenesis}/bin/generation.sh" ];
|
||||
}
|
Loading…
Reference in New Issue