flake reorg + clippy

This commit is contained in:
Robin Appelman 2024-10-27 13:19:58 +01:00
commit 8687197051
12 changed files with 160 additions and 163 deletions

View file

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