fix: docker-image would not build due to syntax mistake
All checks were successful
/ build (push) Successful in 5m25s

This commit is contained in:
Tamipes 2026-06-08 01:00:37 +02:00
parent fb52167fc2
commit 3f8fb4a01f
3 changed files with 28 additions and 25 deletions

View file

@ -5,11 +5,13 @@ dockerTools.buildLayeredImage {
contents = [ my-crate ];
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;
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;
};
};
}