feat: with entry point
Some checks failed
continuous-integration/drone/push Build is failing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2023-12-26 17:30:14 +01:00
parent 08c36e737c
commit d352ace1ea
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912

View File

@ -199,7 +199,7 @@ impl NodeService {
)
.with_user("node")
.with_exposed_port(1337)
.with_exec(vec!["yarn", "start"]);
.with_entrypoint(vec!["yarn", "start"]);
Ok(final_image)
}