Cockpit plugins as TomCat does

Hello, is there a way to create plugins for cockpit in Camunda Run Docker like TomCat version does?

When i run the docker, i get some logs and my config.js appears in there but my plugin wont load:

image

my plugin just simply run a console log when i open the cockpit, the location of the files in the docker is:
/camunda/META-INF/resources/webjars/camunda/app/cockpit/scripts/

the script of the plugin is just:

export default {
    id: "startInstance",
    pluginPoint: "cockpit.processDefinition.runtime.action",
    render: (node, { api, processDefinitionId }) => {
      console.log("Runnin")
    },
  };