Module : Performance Audit

Hello,

I using docker, i installed node but this module doesn’t work, these the code that add at the end of my docker-compose :

  node:
    image: node:10.18.0-alpine
    volumes:
      - node-modules:/usr/local/lib/node_modules
    command: "sh -c 'npm install -g npm@6.13.4 && npm install -g @matomo-p`Texte préformaté`erformance/performance-audit && npm install'"

OR
i tried with this code :

  node:
    image: node:lts-alpine
    volumes:
      - node_modules:/usr/local/lib/node_modules
    command: "npm install --save @matomo-performance/performance-audit"
    labels:
      - diun.enable=true

And i had been this error : “Unable to verify the token for this form.”

I also tried to add this line of code in the docker directly, the installation went well but the plugin does not work, I have the form error.

apt-get update && apt-get install -y curl gnupg && curl -sL https://deb.nodesource.com/setup_12.x | bash - && apt-get install -y nodejs

And I tried with the command directive in the docker-compose but it doesn’t work anymore, matomo is not displayed :

command: "apt-get update && apt-get install -y curl gnupg && curl -sL https://deb.nodesource.com/setup_12.x | bash - && apt-get install -y nodejs"

Any ideas ?