flake reorg

This commit is contained in:
Robin Appelman 2024-01-14 17:56:33 +01:00
commit 7ec17d75ad
9 changed files with 200 additions and 202 deletions

19
docker.nix Normal file
View file

@ -0,0 +1,19 @@
{
dockerTools,
taspromto,
}:
dockerTools.buildLayeredImage {
name = "icewind1991/taspromto";
tag = "latest";
maxLayers = 5;
contents = [
taspromto
dockerTools.caCertificates
];
config = {
Cmd = ["taspromto"];
ExposedPorts = {
"80/tcp" = {};
};
};
}