This commit is contained in:
Robin Appelman 2026-03-26 16:45:18 +01:00
commit fbb10546a9
9 changed files with 778 additions and 413 deletions

19
nix/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" = {};
};
};
}