diff --git a/docker.nix b/docker.nix index fb2aa97..1a9d13c 100644 --- a/docker.nix +++ b/docker.nix @@ -5,5 +5,11 @@ dockerTools.buildLayeredImage { contents = [ my-crate ]; - config.Cmd = [ ("/bin/" + my-crate.pname) ]; + config.Entrypoint = [ ("/bin/" + my-crate.pname) ]; + Labels = { + "org.opencontainers.image.title" = "Minecraft Ingress"; + "org.opencontainers.image.source" = "https://git.tami.moe/tamipes/mc-ingress"; + "org.opencontainers.image.vendor" = "Tamipes"; + "org.opencontainers.image.version" = my-crate.version; + }; }