fix: docker-image would not build due to syntax mistake
All checks were successful
/ build (push) Successful in 5m25s
All checks were successful
/ build (push) Successful in 5m25s
This commit is contained in:
parent
fb52167fc2
commit
3f8fb4a01f
3 changed files with 28 additions and 25 deletions
14
docker.nix
14
docker.nix
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue