You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 707B

1234567891011121314151617181920
  1. #------------------------------------------------------------------------------
  2. # Installs NodeJS, which is needed for running the Linux ITs.
  3. #
  4. # Build from the basedir:
  5. # docker build -f it/docker/Dockerfile -t sonar-scanner-cli-qa it/docker
  6. #
  7. # Verify the content of the image by running a shell session in it:
  8. # docker run -it sonar-scanner-cli-qa bash
  9. #
  10. # CirrusCI builds the image when needed. No need to manually upload it.
  11. #------------------------------------------------------------------------------
  12. FROM 166916561812.dkr.ecr.eu-central-1.amazonaws.com/base:j11-m3-latest
  13. USER root
  14. RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
  15. RUN apt-get install -y nodejs
  16. USER sonarsource