flake reorg

This commit is contained in:
Robin Appelman 2024-01-14 17:04:48 +01:00
commit c0437522d7
12 changed files with 210 additions and 217 deletions

19
docker.nix Normal file
View file

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