flake reorg

This commit is contained in:
Robin Appelman 2024-10-28 13:28:08 +01:00
commit 584ce8f411
8 changed files with 154 additions and 100 deletions

View file

@ -1,6 +1,5 @@
{
dockerTools,
tasproxy,
{ dockerTools
, tasproxy
}:
dockerTools.buildLayeredImage {
name = "icewind1991/tasproxy";
@ -11,9 +10,9 @@ dockerTools.buildLayeredImage {
dockerTools.caCertificates
];
config = {
Cmd = ["tasproxy"];
Cmd = [ "tasproxy" ];
ExposedPorts = {
"80/tcp" = {};
"80/tcp" = { };
};
};
}