This commit is contained in:
Robin Appelman 2025-06-02 22:26:45 +02:00
commit 5c87b874e4
6 changed files with 71 additions and 66 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" = {};
};
};
}